view src/protocols/sametime/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 2ce8ec01a064
children 7831d0969531
line wrap: on
line source



EXTRA_DIST = # Makefile.mingw


pkgdir = $(libdir)/gaim


noinst_HEADERS = \
	meanwhile/mw_channel.h \
	meanwhile/mw_cipher.h \
	meanwhile/mw_common.h \
	meanwhile/mw_debug.h \
	meanwhile/mw_error.h \
	meanwhile/mw_message.h \
	meanwhile/mw_service.h \
	meanwhile/mw_session.h \
	meanwhile/mw_srvc_aware.h \
	meanwhile/mw_srvc_conf.h \
	meanwhile/mw_srvc_ft.h \
	meanwhile/mw_srvc_im.h \
	meanwhile/mw_srvc_resolve.h \
	meanwhile/mw_srvc_store.h \
	meanwhile/mw_st_list.h \
	meanwhile/mw_util.h \
	sametime.h

meanwhile_SOURCES = \
	meanwhile/channel.c \
	meanwhile/cipher.c \
	meanwhile/common.c \
	meanwhile/error.c \
	meanwhile/message.c \
	meanwhile/mw_debug.c \
	meanwhile/mw_util.c \
	meanwhile/service.c \
	meanwhile/session.c \
	meanwhile/srvc_aware.c \
	meanwhile/srvc_conf.c \
	meanwhile/srvc_ft.c \
	meanwhile/srvc_im.c \
	meanwhile/srvc_store.c \
	meanwhile/srvc_resolve.c \
	meanwhile/st_list.c

sametime_SOURCES = \
	$(meanwhile_SOURCES) \
	sametime.c


if STATIC_SAMETIME

st = -DGAIM_STATIC_PRPL
noinst_LIBRARIES   = libsametime.a
libsametime_a_SOURCES = $(sametime_SOURCES)
libsametime_a_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES     = libsametime.la
libsametime_la_SOURCES = $(sametime_SOURCES)

endif


libsametime_la_LDFLAGS = -module -avoid-version -no-undefined
libsametime_la_LIBADD = $(GLIB_LIBS)


AM_CFLAGS = \
	$(GLIB_CFLAGS) \
	$(DEBUG_CFLAGS) \
	-I$(top_srcdir)/src \
	-Imeanwhile


AM_CPPFLAGS = \
	-DG_LOG_DOMAIN=\"meanwhile\" \
	$(st)