view src/protocols/toc/Makefile.am @ 3751:e25577506dec

[gaim-migrate @ 3889] from Jonas Birme' (birme): * CTCP PING now calculates with usec. * Some minor code cleanup. from Ethan Blanton (eblanton): This adds another option to IRC on a per-account basis that specifies the encoding one wishes to use for non-ASCII text. Like most of my recent patches, send-path is not well tested but receive path appears correct. With this patch, accented chars/etc. should work properly again over IRC. In addition, even IRC users in different locales should be able to communicate using non-ASCII character sets. :-) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 19 Oct 2002 05:04:58 +0000
parents 5df423e0bca8
children 59751fe608c5
line wrap: on
line source

EXTRA_DIST = PROTOCOL

pkgdir = $(libdir)/gaim

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

if STATIC_TOC

st = -DSTATIC
pkg_LTLIBRARIES =
noinst_LIBRARIES = libtoc.a

libtoc_a_SOURCES = toc.c

libtoc_a_CFLAGS = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES = libtoc.la
noinst_LIBRARIES =

libtoc_la_SOURCES = toc.c

endif