Mercurial > pidgin
annotate src/protocols/silc/Makefile.am @ 11015:45ceaa1ccc6e
[gaim-migrate @ 12884]
(10:37:16) rizzo: wtf that silc ft patch still not in
(10:38:45) LSchiere2: rizzo: what are you talking about
(10:39:03) rizzo: gaim silc won't build against silc 1.0
(10:39:16) rizzo: has been an issue since gaim 1.3.0
(10:39:29) LSchiere2: I don't recall the patch
(10:39:32) rizzo:
http://www.gentoo.org/cgi-bin/viewcvs.cgi/*checkout*/net-im/gaim/files/gaim-1.3.0-silc-ft.patch
(10:39:41) rizzo: I thought I got it from you guys
(10:39:46) LSchiere2: is it in our tracker?
(10:39:51) rizzo: I don't see it
(10:40:05) ***rizzo digs up his bug
(10:40:57) rizzo: LSchiere2: I think pekka emailed it to -packagers list
(10:41:01) rizzo: http://bugs.gentoo.org/show_bug.cgi?id=92251
(10:41:33) rizzo: from his email:
(10:41:33) rizzo: Enclosed a small patch that makes the Gaim compile with
SILC Toolkit 1.0.
(10:41:33) rizzo: We had unfortunate timing when I released 1.0 at the
same time you
(10:41:33) rizzo: released Gaim 1.3 so I didn't have time to make the
patch for 1.3.
(10:41:33) rizzo: Anyway, the patch removes code that really isn't
supposed to even be
(10:41:33) rizzo: there...
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Fri, 17 Jun 2005 14:53:38 +0000 |
| parents | 2cc05a9e944d |
| children | 7bef0fa7d4aa |
| 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 | |
| 10889 | 9 libsilcgaim_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) |
| 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) |
