Changeset 610
- Timestamp:
- 05/06/08 16:33:53 (6 months ago)
- Location:
- branches/gc
- Files:
-
- 1 removed
- 11 modified
-
c2s/Makefile.am (modified) (2 diffs)
-
configure.ac (modified) (2 diffs)
-
gc (deleted)
-
Makefile.am (modified) (1 diff)
-
mio/Makefile.am (modified) (1 diff)
-
README (modified) (1 diff)
-
router/Makefile.am (modified) (2 diffs)
-
s2s/Makefile.am (modified) (2 diffs)
-
sm/Makefile.am (modified) (2 diffs)
-
storage/Makefile.am (modified) (1 diff)
-
sx/Makefile.am (modified) (1 diff)
-
util/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gc/c2s/Makefile.am
r607 r610 1 INCLUDES = -I$(top_srcdir)/gc/include2 3 1 bin_PROGRAMS = c2s 4 2 … … 11 9 c2s_LDADD = $(top_builddir)/sx/libsx.la \ 12 10 $(top_builddir)/mio/libmio.la \ 13 $(top_builddir)/util/libutil.la \ 14 $(top_builddir)/gc/libgc.la 11 $(top_builddir)/util/libutil.la 15 12 if USE_LIBSUBST 16 13 c2s_LDADD += $(top_builddir)/subst/libsubst.la -
branches/gc/configure.ac
r609 r610 372 372 AC_MSG_ERROR([atomic_ops library not found])) 373 373 374 # gc 375 AC_CHECK_LIB([gc], [GC_malloc], 376 [], 377 AC_MSG_ERROR([gc library not found])) 378 374 379 # 375 380 # SASL backend selection … … 937 942 sm/Makefile 938 943 tools/Makefile]) 939 AC_CONFIG_SUBDIRS([gc])940 944 AC_OUTPUT -
branches/gc/Makefile.am
r604 r610 1 1 EXTRA_DIST = Doxyfile.in README.win32 README.protocol contrib UPGRADE 2 2 3 SUBDIRS = gcetc tools man mio sx util c2s router s2s sm storage3 SUBDIRS = etc tools man mio sx util c2s router s2s sm storage 4 4 5 5 .PHONY: docs -
branches/gc/mio/Makefile.am
r607 r610 1 INCLUDES = -I$(top_srcdir)/gc/include2 3 1 noinst_LTLIBRARIES = libmio.la 4 2 -
branches/gc/README
r580 r610 17 17 - UDNS - asyncronous DNS resolver library 18 18 http://www.corpit.ru/mjt/udns.html 19 - atomic_ops 20 - Hans Boehm Garbage Collector 21 http://www.hpl.hp.com/personal/Hans_Boehm/gc/ 19 22 20 23 Optional packages: -
branches/gc/router/Makefile.am
r607 r610 1 INCLUDES = -DCONFIG_DIR=\"$(sysconfdir)\" -I$(top_srcdir)/gc/include1 INCLUDES = -DCONFIG_DIR=\"$(sysconfdir)\" 2 2 3 3 bin_PROGRAMS = router … … 8 8 router_LDADD = $(top_builddir)/sx/libsx.la \ 9 9 $(top_builddir)/mio/libmio.la \ 10 $(top_builddir)/util/libutil.la \ 11 $(top_builddir)/gc/libgc.la 10 $(top_builddir)/util/libutil.la 12 11 if USE_LIBSUBST 13 12 router_LDADD += $(top_builddir)/subst/libsubst.la -
branches/gc/s2s/Makefile.am
r607 r610 1 INCLUDES = -DCONFIG_DIR=\"$(sysconfdir)\" -I$(top_srcdir)/gc/include1 INCLUDES = -DCONFIG_DIR=\"$(sysconfdir)\" 2 2 3 3 bin_PROGRAMS = s2s … … 8 8 s2s_LDADD = $(top_builddir)/sx/libsx.la \ 9 9 $(top_builddir)/mio/libmio.la \ 10 $(top_builddir)/util/libutil.la \ 11 $(top_builddir)/gc/libgc.la 10 $(top_builddir)/util/libutil.la 12 11 if USE_LIBSUBST 13 12 s2s_LDADD += $(top_builddir)/subst/libsubst.la -
branches/gc/sm/Makefile.am
r607 r610 1 INCLUDES = -I$(top_srcdir)/gc/include2 3 1 bin_PROGRAMS = sm 4 2 … … 47 45 sm_LDADD = $(top_builddir)/sx/libsx.la \ 48 46 $(top_builddir)/mio/libmio.la \ 49 $(top_builddir)/util/libutil.la \ 50 $(top_builddir)/gc/libgc.la 47 $(top_builddir)/util/libutil.la 51 48 if USE_LIBSUBST 52 49 sm_LDADD += $(top_builddir)/subst/libsubst.la -
branches/gc/storage/Makefile.am
r607 r610 1 INCLUDES = -I$(top_srcdir)/sm -I$(top_srcdir)/c2s -I$(top_srcdir)/gc/include1 INCLUDES = -I$(top_srcdir)/sm -I$(top_srcdir)/c2s 2 2 3 3 MODULE_LDFLAGS = -module -avoid-version -
branches/gc/sx/Makefile.am
r607 r610 1 INCLUDES = -I$(top_srcdir)/gc/include2 3 1 noinst_LTLIBRARIES = libsx.la 4 2 noinst_HEADERS = plugins.h sasl.h sx.h -
branches/gc/util/Makefile.am
r607 r610 1 INCLUDES = -I$(top_srcdir)/gc/include2 3 1 noinst_LTLIBRARIES = libutil.la 4 2
