Mercurial > pidgin
annotate src/protocols/rendezvous/Makefile.am @ 10570:2b05acfeec65
[gaim-migrate @ 11960]
sf patch #1036930, from Ettore Simone with updates from Stu Tomlinson
Add support for setting the ICQ web presence, authorization and IP
hiding preferences. I know the authorization setting works. The IP
hiding preference didn't seem to have any affect on licq. And the web
aware setting made something different happen, but I still didn't
seem to be web aware. I think there might be another setting that
needs setting.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Fri, 04 Feb 2005 04:50:08 +0000 |
| parents | 8bc7ba019e96 |
| children | 2cc05a9e944d |
| rev | line source |
|---|---|
| 8489 | 1 EXTRA_DIST = \ |
| 2 Makefile.mingw | |
| 3 | |
| 4 pkgdir = $(libdir)/gaim | |
| 5 | |
| 6 RENDEZVOUSSOURCES = \ | |
| 10549 | 7 direct.c \ |
| 8 direct.h \ | |
| 8489 | 9 mdns.c \ |
| 9252 | 10 mdns.h \ |
| 8738 | 11 mdns_cache.c \ |
| 9252 | 12 mdns_cache.h \ |
| 8489 | 13 rendezvous.c |
| 14 | |
| 15 AM_CFLAGS = $(st) | |
| 16 | |
| 17 librendezvous_la_LDFLAGS = -module -avoid-version | |
| 18 | |
| 19 if STATIC_RENDEZVOUS | |
| 20 | |
| 21 st = -DGAIM_STATIC_PRPL | |
| 22 noinst_LIBRARIES = librendezvous.a | |
| 23 librendezvous_a_SOURCES = $(RENDEZVOUSSOURCES) | |
| 24 librendezvous_a_CFLAGS = $(AM_CFLAGS) | |
| 25 | |
| 26 else | |
| 27 | |
| 28 st = | |
| 29 pkg_LTLIBRARIES = librendezvous.la | |
| 30 librendezvous_la_SOURCES = $(RENDEZVOUSSOURCES) | |
| 31 | |
| 32 endif | |
| 33 | |
| 34 | |
| 35 AM_CPPFLAGS = \ | |
| 36 -I$(top_srcdir)/src \ | |
| 37 $(GLIB_CFLAGS) \ | |
| 38 $(DEBUG_CFLAGS) |
