Mercurial > pidgin
annotate src/protocols/simple/Makefile.am @ 11862:f8cd06753755
[gaim-migrate @ 14153]
Make "make distcheck" work, which also makes the perl plugin loader loadable
when installed to a non-standard prefix (it still can't find Gaim.pm though)
Add some extra warning CFLAGS if a) --enable-debug was used and b) your
compiler supports them.
Plug a couple of leaks
The gaimrc plugin's GtkTreeView expander_size setting now works (but doesn't
seem to instant-apply - should it?)
staticify some functions that don't need to be exposed
probably something else I forgot about
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Thu, 27 Oct 2005 20:43:43 +0000 |
| parents | b4cf724b64f8 |
| children | cfc808463763 |
| rev | line source |
|---|---|
| 11181 | 1 pkgdir = $(libdir)/gaim |
| 2 | |
| 3 SIMPLESOURCES = \ | |
| 4 simple.c \ | |
| 5 simple.h \ | |
| 6 sipmsg.c \ | |
| 7 sipmsg.h \ | |
| 8 digcalc.c \ | |
| 11383 | 9 digcalc.h |
| 11181 | 10 |
| 11376 | 11 AM_CFLAGS = $(st) |
| 11181 | 12 |
| 13 libsimple_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) | |
| 14 | |
| 15 if STATIC_MSN | |
| 16 | |
| 17 st = -DGAIM_STATIC_PRPL | |
| 18 noinst_LIBRARIES = libsimple.a | |
| 19 libsimple_a_SOURCES = $(SIMPLESOURCES) | |
| 20 libsimple_a_CFLAGS = $(AM_CFLAGS) | |
| 21 | |
| 22 else | |
| 23 | |
| 24 st = | |
| 25 pkg_LTLIBRARIES = libsimple.la | |
| 26 libsimple_la_SOURCES = $(SIMPLESOURCES) | |
| 27 | |
| 28 endif | |
| 29 | |
| 30 AM_CPPFLAGS = \ | |
| 31 -I$(top_srcdir)/src \ | |
| 32 $(GLIB_CFLAGS) \ | |
| 33 $(DEBUG_CFLAGS) |
