Mercurial > pidgin
view src/protocols/toc/Makefile.am @ 7786:203a18e56dc6
[gaim-migrate @ 8431]
* Documentation is good. Not that I have any idea if any of my
documentation works, because I haven't checked... I totally made up
@note, but it sure seems reasonable to me.
* A couple of stringref utility functions which seem useful in any
case, like len and cmp.
* I'm going ahead and pushing a stringref creation function which
creates a zero-refcount stringref into CVS... Nothing uses it yet,
but I think that it is useful even in the absence of major stringref
conversion ... because it's garbage collected! If no one refs it
before the next iteration of the mainloop, it will be freed ... if
it is ref'd, of course, it will have to be freed normally by an
unref at some later point.
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Sun, 07 Dec 2003 16:28:34 +0000 |
parents | eb3356588ef5 |
children | 6b1ecf40f3ba |
line wrap: on
line source
EXTRA_DIST = \ PROTOCOL \ Makefile.mingw pkgdir = $(libdir)/gaim TOCSOURCES = toc.c AM_CFLAGS = $(st) libtoc_la_LDFLAGS = -module -avoid-version if STATIC_TOC st = -DSTATIC noinst_LIBRARIES = libtoc.a libtoc_a_SOURCES = $(TOCSOURCES) libtoc_a_CFLAGS = $(AM_CFLAGS) else st = pkg_LTLIBRARIES = libtoc.la libtoc_la_SOURCES = $(TOCSOURCES) endif AM_CPPFLAGS = \ -I$(top_srcdir)/src \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS)