Mercurial > pidgin
annotate libgaim/protocols/sametime/Makefile.am @ 15314:4a4e1dfd8716
[gaim-migrate @ 18105]
Can't use new protocol version because of different login scheme. Revert to old version.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Huetsch <markhuetsch> |
|---|---|
| date | Thu, 11 Jan 2007 07:26:28 +0000 |
| parents | a03e74b9b257 |
| children |
| rev | line source |
|---|---|
| 14192 | 1 |
| 2 EXTRA_DIST = Makefile.mingw | |
| 3 | |
| 4 | |
| 5 pkgdir = $(libdir)/gaim | |
| 6 | |
| 7 | |
| 8 noinst_HEADERS = sametime.h | |
| 9 | |
| 10 SAMETIMESOURCES = sametime.c | |
| 11 | |
| 12 | |
| 13 if STATIC_SAMETIME | |
| 14 | |
| 15 st = -DGAIM_STATIC_PRPL | |
| 16 noinst_LIBRARIES = libsametime.a | |
| 17 libsametime_a_SOURCES = $(SAMETIMESOURCES) | |
| 18 libsametime_a_CFLAGS = $(AM_CFLAGS) | |
| 19 | |
| 20 else | |
| 21 | |
| 22 st = | |
| 23 pkg_LTLIBRARIES = libsametime.la | |
| 24 libsametime_la_SOURCES = $(SAMETIMESOURCES) | |
| 25 | |
| 26 | |
| 27 endif | |
| 28 | |
| 29 | |
|
14913
a03e74b9b257
[gaim-migrate @ 17685]
Christopher O'Brien <siege@pidgin.im>
parents:
14192
diff
changeset
|
30 libsametime_la_LDFLAGS = -module -avoid-version |
| 14192 | 31 libsametime_la_LIBADD = $(GLIB_LIBS) $(MEANWHILE_LIBS) |
| 32 | |
| 33 | |
| 34 AM_CFLAGS = \ | |
| 35 $(GLIB_CFLAGS) $(MEANWHILE_CFLAGS) \ | |
| 36 $(DEBUG_CFLAGS) \ | |
| 37 -I$(top_srcdir)/libgaim | |
| 38 | |
| 39 | |
| 40 AM_CPPFLAGS = \ | |
| 41 -DG_LOG_DOMAIN=\"sametime\" \ | |
| 42 $(st) | |
| 43 |
