Mercurial > pidgin.yaz
view libpurple/protocols/sametime/Makefile.am @ 16342:b1c1b2319616
When initializing, the debug system is initialized before the prefs system, but
debug calls will end up calling prefs functions, so we need to deal with that
situation cleanly. I noticed this when using the debug functions in the core
migration code.
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 23 Apr 2007 16:59:37 +0000 |
parents | 7125eda8fe22 |
children | ce049678a67b |
line wrap: on
line source
EXTRA_DIST = Makefile.mingw pkgdir = $(libdir)/purple noinst_HEADERS = sametime.h SAMETIMESOURCES = sametime.c if STATIC_SAMETIME st = -DPURPLE_STATIC_PRPL noinst_LIBRARIES = libsametime.a libsametime_a_SOURCES = $(SAMETIMESOURCES) libsametime_a_CFLAGS = $(AM_CFLAGS) else st = pkg_LTLIBRARIES = libsametime.la libsametime_la_SOURCES = $(SAMETIMESOURCES) endif libsametime_la_LDFLAGS = -module -avoid-version libsametime_la_LIBADD = $(GLIB_LIBS) $(MEANWHILE_LIBS) AM_CFLAGS = \ $(GLIB_CFLAGS) $(MEANWHILE_CFLAGS) \ $(DEBUG_CFLAGS) \ -I$(top_srcdir)/libpurple AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"sametime\" \ $(st)