view src/protocols/yahoo/Makefile.am @ 3996:3fdfe7872118

[gaim-migrate @ 4191] - Fixed a segfault that occurred when a key/value pair had no value (i.e., in the mail notification packets that the Yahoo server is sending out). - Skip over a garbage character in mail notification packets that's causing the sender name key/value pair to be ignored. - Some code cleanups, which should optimize it (though not noticeably so) and make it easier to read. Thanks go to ZuperDee for this. Hope this works for everybody else. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 23 Nov 2002 11:08:11 +0000
parents 5df423e0bca8
children 59751fe608c5
line wrap: on
line source

EXTRA_DIST = md5.h

pkgdir = $(libdir)/gaim

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

if STATIC_YAHOO

st = -DSTATIC
pkg_LTLIBRARIES =
noinst_LIBRARIES = libyahoo.a

libyahoo_a_SOURCES = crypt.c yahoo.c

libyahoo_a_CFLAGS = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES = libyahoo.la
noinst_LIBRARIES =

libyahoo_la_SOURCES = crypt.c yahoo.c

endif