src/protocols/irc/Makefile.am

Tue, 26 Oct 2004 01:00:35 +0000

author
Stu Tomlinson <nosnilmot@pidgin.im>
date
Tue, 26 Oct 2004 01:00:35 +0000
changeset 10145
f1405f65ff41
parent 8351
216d9836e839
child 10889
64482f2467cb
permissions
-rw-r--r--

[gaim-migrate @ 11218]
This fixes the crash / hang / strangeness when dragging a buddy to a
conversation entry thing. Also fixes a minor memory leak with old plugins.

EXTRA_DIST = PROTOCOL Makefile.mingw

pkgdir = $(libdir)/gaim

IRCSOURCES = irc.c parse.c cmds.c msgs.c irc.h dcc_send.c

AM_CFLAGS = $(st)

libirc_la_LDFLAGS = -module -avoid-version

if STATIC_IRC

st = -DGAIM_STATIC_PRPL
noinst_LIBRARIES = libirc.a
pkg_LTLIBRARIES =

libirc_a_SOURCES = $(IRCSOURCES)
libirc_a_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES = libirc.la
noinst_LIBRARIES =

libirc_la_SOURCES = $(IRCSOURCES)

endif

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

mercurial