view src/protocols/irc/Makefile.am @ 3913:419bf1bc8fa2

[gaim-migrate @ 4072] This should fix the bug where closing the debug window with the "X" would not uncheck the preference for it. Previously, it got unchecked then rechecked. The line I'm removing used to be "misc_options_new ^= OPT_MISC_DEBUG;", which I guess is a hold over or something of when prefs had that apply button, maybe. I dunno. I think this should be good... Roof. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 07 Nov 2002 03:34:46 +0000
parents 5df423e0bca8
children 59751fe608c5
line wrap: on
line source

EXTRA_DIST = PROTOCOL

pkgdir = $(libdir)/gaim

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

if STATIC_IRC

st = -DSTATIC
pkg_LTLIBRARIES =
noinst_LIBRARIES = libirc.a

libirc_a_SOURCES = irc.c

libirc_a_CFLAGS = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES = libirc.la
noinst_LIBRARIES =

libirc_la_SOURCES = irc.c

endif