Mercurial > pidgin.yaz
view libpurple/protocols/silc10/Makefile.am @ 22424:7b4d39ffd563
Change OSCAR to use UTF-16 rather than UCS-2 conversions. Apparently
some iconv implementations (notably win_iconv) are dropping UCS-2
support, due to the impression that it is obsolete. For BMP
characters, UTF-16 should be bitwise identical to UCS-2, so if OSCAR
really *is* UCS-2, this shouldn't hurt anything. If it turns out it's
capable of UTF-16, well, then, more's the better.
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Fri, 07 Mar 2008 04:01:20 +0000 |
parents | ba1b50f114f6 |
children | 2b62300d2c19 |
line wrap: on
line source
EXTRA_DIST = README TODO Makefile.mingw pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) SILCSOURCES = silc.c silcpurple.h buddy.c chat.c ft.c ops.c pk.c util.c wb.c wb.h AM_CFLAGS = $(st) libsilcpurple_la_LDFLAGS = -module -avoid-version if STATIC_SILC st = -DPURPLE_STATIC_PRPL $(SILC_CFLAGS) noinst_LIBRARIES = libsilcpurple.a pkg_LTLIBRARIES = libsilcpurple_a_SOURCES = $(SILCSOURCES) libsilcpurple_a_CFLAGS = $(AM_CFLAGS) libsilcpurple_a_LIBADD = $(SILC_LIBS) else st = $(SILC_CFLAGS) pkg_LTLIBRARIES = libsilcpurple.la noinst_LIBRARIES = libsilcpurple_la_SOURCES = $(SILCSOURCES) libsilcpurple_la_LIBADD = $(GLIB_LIBS) $(SILC_LIBS) endif AM_CPPFLAGS = \ -I$(top_srcdir)/libpurple \ -I$(top_builddir)/libpurple \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS)