Mercurial > pidgin
annotate src/protocols/rendezvous/Makefile.am @ 9161:c3fa2ad099a2
[gaim-migrate @ 9946]
wing added support for yahoo profiles in, well pretty much every language.
Looks pretty impressive to me.
Someone may want to double check his src/util.c changes. I think we have
some crazy patch writers who know those functions better than me.
This also introduces a couple of warning because wing didn't add his new
util.c function to util.h. Rather than adding it myself, I'm going to bug
him to add it and document it.
committer: Tailor Script <tailor@pidgin.im>
| author | Tim Ringenbach <marv@pidgin.im> |
|---|---|
| date | Wed, 02 Jun 2004 00:44:51 +0000 |
| parents | dbbf5470ba05 |
| children | fe9f4eee3dcb |
| rev | line source |
|---|---|
| 8489 | 1 EXTRA_DIST = \ |
| 2 Makefile.mingw | |
| 3 | |
| 4 pkgdir = $(libdir)/gaim | |
| 5 | |
| 6 RENDEZVOUSSOURCES = \ | |
| 7 mdns.c \ | |
| 8738 | 8 mdns_cache.c \ |
| 8489 | 9 rendezvous.c |
| 10 | |
| 11 AM_CFLAGS = $(st) | |
| 12 | |
| 13 librendezvous_la_LDFLAGS = -module -avoid-version | |
| 14 | |
| 15 if STATIC_RENDEZVOUS | |
| 16 | |
| 17 st = -DGAIM_STATIC_PRPL | |
| 18 noinst_LIBRARIES = librendezvous.a | |
| 19 librendezvous_a_SOURCES = $(RENDEZVOUSSOURCES) | |
| 20 librendezvous_a_CFLAGS = $(AM_CFLAGS) | |
| 21 | |
| 22 else | |
| 23 | |
| 24 st = | |
| 25 pkg_LTLIBRARIES = librendezvous.la | |
| 26 librendezvous_la_SOURCES = $(RENDEZVOUSSOURCES) | |
| 27 | |
| 28 endif | |
| 29 | |
| 30 | |
| 31 AM_CPPFLAGS = \ | |
| 32 -I$(top_srcdir)/src \ | |
| 33 $(GLIB_CFLAGS) \ | |
| 34 $(DEBUG_CFLAGS) |
