Mercurial > pidgin
view src/protocols/oscar/Makefile.am @ 13709:ff25f6d2b484
[gaim-migrate @ 16113]
CID 154:
File: gaim/src/prefs.c
Function: gaim_prefs_rename_boolean_toggle
Description: Pointer returned from "find_pref" is never used
newpref was only examined in g_return_if_fail() statements, which can be compiled out. It's probably safer to do these sanity checks all the time, given that plugins could call this, etc. etc.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 01 May 2006 20:27:49 +0000 |
parents | 6519aeb66b31 |
children |
line wrap: on
line source
EXTRA_DIST = \ COPYING \ AUTHORS \ Makefile.mingw pkgdir = $(libdir)/gaim OSCARSOURCES = \ bstream.c \ family_admin.c \ family_advert.c \ family_alert.c \ family_auth.c \ family_bart.c \ family_bos.c \ family_buddy.c \ family_chat.c \ family_chatnav.c \ family_icq.c \ family_icbm.c \ family_invite.c \ family_locate.c \ family_odir.c \ family_oservice.c \ family_popup.c \ family_feedbag.c \ family_stats.c \ family_translate.c \ family_userlookup.c \ flap_connection.c \ misc.c \ msgcookie.c \ odc.c \ oft.c \ oscar.c \ oscar.h \ oscar_data.c \ peer.c \ peer.h \ peer_proxy.c \ rxhandlers.c \ snac.c \ snactypes.h \ tlv.c \ util.c AM_CFLAGS = $(st) liboscar_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) if STATIC_OSCAR st = -DGAIM_STATIC_PRPL noinst_LIBRARIES = liboscar.a liboscar_a_SOURCES = $(OSCARSOURCES) liboscar_a_CFLAGS = $(AM_CFLAGS) else st = pkg_LTLIBRARIES = liboscar.la liboscar_la_SOURCES = $(OSCARSOURCES) endif AM_CPPFLAGS = \ -I$(top_srcdir)/src \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS)