Changeset 610

Show
Ignore:
Timestamp:
05/06/08 16:33:53 (6 months ago)
Author:
smoku
Message:

Removed bundled GC. Using system one.

Location:
branches/gc
Files:
1 removed
11 modified

Legend:

Unmodified
Added
Removed
  • branches/gc/c2s/Makefile.am

    r607 r610  
    1 INCLUDES = -I$(top_srcdir)/gc/include 
    2  
    31bin_PROGRAMS = c2s 
    42 
     
    119c2s_LDADD = $(top_builddir)/sx/libsx.la \ 
    1210            $(top_builddir)/mio/libmio.la \ 
    13             $(top_builddir)/util/libutil.la \ 
    14             $(top_builddir)/gc/libgc.la 
     11            $(top_builddir)/util/libutil.la 
    1512if USE_LIBSUBST 
    1613c2s_LDADD += $(top_builddir)/subst/libsubst.la 
  • branches/gc/configure.ac

    r609 r610  
    372372    AC_MSG_ERROR([atomic_ops library not found])) 
    373373 
     374# gc 
     375AC_CHECK_LIB([gc], [GC_malloc], 
     376    [], 
     377    AC_MSG_ERROR([gc library not found])) 
     378 
    374379# 
    375380# SASL backend selection 
     
    937942                 sm/Makefile 
    938943                 tools/Makefile]) 
    939 AC_CONFIG_SUBDIRS([gc]) 
    940944AC_OUTPUT 
  • branches/gc/Makefile.am

    r604 r610  
    11EXTRA_DIST = Doxyfile.in README.win32 README.protocol contrib UPGRADE 
    22 
    3 SUBDIRS = gc etc tools man mio sx util c2s router s2s sm storage 
     3SUBDIRS = etc tools man mio sx util c2s router s2s sm storage 
    44 
    55.PHONY: docs 
  • branches/gc/mio/Makefile.am

    r607 r610  
    1 INCLUDES = -I$(top_srcdir)/gc/include 
    2  
    31noinst_LTLIBRARIES = libmio.la 
    42 
  • branches/gc/README

    r580 r610  
    1717 - UDNS - asyncronous DNS resolver library 
    1818     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/ 
    1922 
    2023Optional packages: 
  • branches/gc/router/Makefile.am

    r607 r610  
    1 INCLUDES = -DCONFIG_DIR=\"$(sysconfdir)\" -I$(top_srcdir)/gc/include 
     1INCLUDES = -DCONFIG_DIR=\"$(sysconfdir)\" 
    22 
    33bin_PROGRAMS =  router 
     
    88router_LDADD = $(top_builddir)/sx/libsx.la \ 
    99               $(top_builddir)/mio/libmio.la \ 
    10                $(top_builddir)/util/libutil.la \ 
    11                $(top_builddir)/gc/libgc.la 
     10               $(top_builddir)/util/libutil.la 
    1211if USE_LIBSUBST 
    1312router_LDADD += $(top_builddir)/subst/libsubst.la 
  • branches/gc/s2s/Makefile.am

    r607 r610  
    1 INCLUDES = -DCONFIG_DIR=\"$(sysconfdir)\" -I$(top_srcdir)/gc/include 
     1INCLUDES = -DCONFIG_DIR=\"$(sysconfdir)\" 
    22 
    33bin_PROGRAMS = s2s 
     
    88s2s_LDADD = $(top_builddir)/sx/libsx.la \ 
    99            $(top_builddir)/mio/libmio.la \ 
    10             $(top_builddir)/util/libutil.la \ 
    11             $(top_builddir)/gc/libgc.la 
     10            $(top_builddir)/util/libutil.la 
    1211if USE_LIBSUBST 
    1312s2s_LDADD += $(top_builddir)/subst/libsubst.la 
  • branches/gc/sm/Makefile.am

    r607 r610  
    1 INCLUDES = -I$(top_srcdir)/gc/include 
    2  
    31bin_PROGRAMS = sm 
    42 
     
    4745sm_LDADD = $(top_builddir)/sx/libsx.la \ 
    4846           $(top_builddir)/mio/libmio.la \ 
    49            $(top_builddir)/util/libutil.la \ 
    50            $(top_builddir)/gc/libgc.la 
     47           $(top_builddir)/util/libutil.la 
    5148if USE_LIBSUBST 
    5249sm_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/include 
     1INCLUDES = -I$(top_srcdir)/sm -I$(top_srcdir)/c2s 
    22 
    33MODULE_LDFLAGS = -module -avoid-version 
  • branches/gc/sx/Makefile.am

    r607 r610  
    1 INCLUDES = -I$(top_srcdir)/gc/include 
    2  
    31noinst_LTLIBRARIES = libsx.la 
    42noinst_HEADERS = plugins.h sasl.h sx.h 
  • branches/gc/util/Makefile.am

    r607 r610  
    1 INCLUDES = -I$(top_srcdir)/gc/include 
    2  
    31noinst_LTLIBRARIES = libutil.la 
    42