view src/protocols/gg/Makefile.am @ 4111:ee884f1d7ae3

[gaim-migrate @ 4326] <Robot101> adds a gc->flag called OPT_CONN_AUTO_RESP so that gc->away can always store the away message even if the prpl doesn't support autoresponding <Robot101> makes all protos correctly free and set gc->away to avoid leaks <Robot101> stores the current away state in gc->away_state whenever gc->away is non-NULL (ie it's not just a plain on-line) <Robot101> also minor change to Jabber to make Chatty an away state, and to Gadu-Gadu to make some other thing an away state too committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 21 Dec 2002 19:33:54 +0000
parents a5c49e9c6a53
children 59751fe608c5
line wrap: on
line source

EXTRA_DIST = protocol.txt

pkgdir = $(libdir)/gaim

CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS)
libgg_la_LDFLAGS = -module -avoid-version

if STATIC_GG

st = -DSTATIC
pkg_LTLIBRARIES =
noinst_LIBRARIES = libgg.a

libgg_a_SOURCES = libgg.c \
		  libgg.h \
		  common.c \
		  gg.c

libgg_a_CFLAGS = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES = libgg.la
noinst_LIBRARIES =

libgg_la_SOURCES = libgg.c \
		   libgg.h \
		   common.c \
		   gg.c

endif