Mercurial > pidgin
annotate src/protocols/silc/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 | 3547fd2af609 |
| children | 2cc05a9e944d |
| rev | line source |
|---|---|
| 9353 | 1 EXTRA_DIST = README TODO Makefile.mingw |
| 8849 | 2 |
| 3 pkgdir = $(libdir)/gaim | |
| 4 | |
| 5 SILCSOURCES = silc.c silcgaim.h buddy.c chat.c ft.c ops.c pk.c util.c | |
| 6 | |
| 7 AM_CFLAGS = $(st) | |
| 8 | |
| 9061 | 9 libsilcgaim_la_LDFLAGS = -module -avoid-version |
| 8849 | 10 |
| 8857 | 11 if STATIC_SILC |
| 8849 | 12 |
| 9905 | 13 st = -DGAIM_STATIC_PRPL $(SILC_CFLAGS) |
| 9061 | 14 noinst_LIBRARIES = libsilcgaim.a |
| 8849 | 15 pkg_LTLIBRARIES = |
| 16 | |
| 9061 | 17 libsilcgaim_a_SOURCES = $(SILCSOURCES) |
| 18 libsilcgaim_a_CFLAGS = $(AM_CFLAGS) | |
| 19 libsilcgaim_a_LIBADD = $(SILC_LIBS) | |
| 8849 | 20 |
| 21 else | |
| 22 | |
| 9905 | 23 st = $(SILC_CFLAGS) |
| 9061 | 24 pkg_LTLIBRARIES = libsilcgaim.la |
| 8849 | 25 noinst_LIBRARIES = |
| 26 | |
| 9061 | 27 libsilcgaim_la_SOURCES = $(SILCSOURCES) |
| 28 libsilcgaim_la_LIBADD = $(SILC_LIBS) | |
| 8849 | 29 |
| 30 endif | |
| 31 | |
| 32 AM_CPPFLAGS = \ | |
| 33 -I$(top_srcdir)/src \ | |
| 34 $(GLIB_CFLAGS) \ | |
| 35 $(DEBUG_CFLAGS) |
