Mercurial > pidgin.yaz
view libpurple/protocols/oscar/Makefile.am @ 21121:35b4f1dc4c8d
replace most calls to strerror with calls to g_strerror. strerror will return
a locale-specific string in the locale-specific encoding, which isn't
guaranteed to be UTF-8. g_strerror will always return a UTF-8 string.
I left gg and zephyr untouched, since gg doesn't include glib headers yet,
and zephyr does something weird with a #define for strerror. Someone more
familliar with those should take a look.
And the win32 guys should check and see if I screwed something up, since
they had strerror #defined to something else.
This should fix #2247 (and maybe some mystery crashes)
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Sat, 03 Nov 2007 17:52:28 +0000 |
parents | 6f54b1e84610 |
children | 2b62300d2c19 315151da0dc6 |
line wrap: on
line source
EXTRA_DIST = \ COPYING \ AUTHORS \ Makefile.mingw pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) 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 \ oscarcommon.h \ oscar_data.c \ peer.c \ peer.h \ peer_proxy.c \ rxhandlers.c \ snac.c \ snactypes.h \ tlv.c \ util.c AM_CFLAGS = $(st) libaim_la_LDFLAGS = -module -avoid-version libicq_la_LDFLAGS = -module -avoid-version if STATIC_OSCAR st = -DPURPLE_STATIC_PRPL noinst_LIBRARIES = liboscar.a liboscar_a_SOURCES = $(OSCARSOURCES) libaim.c libicq.c liboscar_a_CFLAGS = $(AM_CFLAGS) else st = pkg_LTLIBRARIES = liboscar.la libaim.la libicq.la liboscar_la_SOURCES = $(OSCARSOURCES) liboscar_la_LIBADD = $(GLIB_LIBS) libaim_la_SOURCES = libaim.c libaim_la_LIBADD = liboscar.la libicq_la_SOURCES = libicq.c libicq_la_LIBADD = liboscar.la endif AM_CPPFLAGS = \ -I$(top_srcdir)/libpurple \ -I$(top_builddir)/libpurple \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS)