Mercurial > pidgin
annotate src/protocols/rendezvous/Makefile.am @ 10372:618a330c0260
[gaim-migrate @ 11595]
(17:31:55) SimGuy: LSchiere2: because the person that redid it didn't think
to move the CPWs since they only have one field
(17:32:05) SimGuy: the others are all multiple pieces of data
(17:32:07) LSchiere2: its confusing and inconsistent now
(17:48:00) SimGuy: LSchiere2:
http://kevin.simguy.net:8888/patches/gaim-cpw-structify.diff
(17:48:03) SimGuy: that should apply to both
(17:48:16) SimGuy: the patch to util.c just fixes a spelling error in a
comment I fixed like 6 weeks ago
(17:48:59) SimGuy: er, both being HEAD and oldstatus
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Tue, 14 Dec 2004 22:50:54 +0000 |
| parents | fe9f4eee3dcb |
| children | 8bc7ba019e96 |
| rev | line source |
|---|---|
| 8489 | 1 EXTRA_DIST = \ |
| 2 Makefile.mingw | |
| 3 | |
| 4 pkgdir = $(libdir)/gaim | |
| 5 | |
| 6 RENDEZVOUSSOURCES = \ | |
| 7 mdns.c \ | |
| 9252 | 8 mdns.h \ |
| 8738 | 9 mdns_cache.c \ |
| 9252 | 10 mdns_cache.h \ |
| 8489 | 11 rendezvous.c |
| 12 | |
| 13 AM_CFLAGS = $(st) | |
| 14 | |
| 15 librendezvous_la_LDFLAGS = -module -avoid-version | |
| 16 | |
| 17 if STATIC_RENDEZVOUS | |
| 18 | |
| 19 st = -DGAIM_STATIC_PRPL | |
| 20 noinst_LIBRARIES = librendezvous.a | |
| 21 librendezvous_a_SOURCES = $(RENDEZVOUSSOURCES) | |
| 22 librendezvous_a_CFLAGS = $(AM_CFLAGS) | |
| 23 | |
| 24 else | |
| 25 | |
| 26 st = | |
| 27 pkg_LTLIBRARIES = librendezvous.la | |
| 28 librendezvous_la_SOURCES = $(RENDEZVOUSSOURCES) | |
| 29 | |
| 30 endif | |
| 31 | |
| 32 | |
| 33 AM_CPPFLAGS = \ | |
| 34 -I$(top_srcdir)/src \ | |
| 35 $(GLIB_CFLAGS) \ | |
| 36 $(DEBUG_CFLAGS) |
