Changeset d2f9df in git for factory


Ignore:
Timestamp:
Oct 7, 2011, 6:49:57 PM (13 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
089d1fb6ce5d913cc0065ea549d1c444ac577667
Parents:
ab11d3ad2dc558349cd8f3406b9f720f816aa8df
git-author:
Martin Lee <martinlee84@web.de>2011-10-07 18:49:57+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:13:56+01:00
Message:
configure changes of factory of Jan Engelhardt
Location:
factory
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • factory/Makefile.am

    rab11d3 rd2f9df  
     1ACLOCAL_AMFLAGS = -I ../m4
     2
    13CXXTEMPLFLAGS      =  --no-exceptions ## -fno-implicit-templates
    24
  • factory/configure.ac

    rab11d3 rd2f9df  
    105105AC_PROG_LN_S
    106106AC_PROG_INSTALL
    107 AC_PROG_RANLIB
     107AC_DISABLE_STATIC
     108LT_INIT
    108109AC_PROG_MAKE_SET
    109110AC_CHECK_PROG(AR, ar, ar, where-is-your-ar)
    110111AC_CHECK_PROG(M4, m4, m4, where-is-your-m4)
    111112AC_CHECK_PROG(BISON, bison, bison, where-is-your-bison)
     113AC_C_CONST
     114AC_C_INLINE
     115AH_TEMPLATE([INT64], [])
     116AC_DEFINE([INT64], [long long int])
    112117DX_INIT_DOXYGEN($PACKAGE_NAME, MYDOXYGENCONFIG)
    113118
     
    324329# Singular
    325330if test "x$with_Singular" = xyes; then
     331  AH_TEMPLATE([SINGULAR], [define if linked to Singular])
    326332  AC_DEFINE([SINGULAR],[1],[SINGULAR])
    327333  AC_DEFINE([DISABLE_GMP_CPP],[1],[DISABLE_GMP_CPP])
     
    357363fi
    358364if test "$with_omalloc" = yes; then
     365  AH_TEMPLATE([HAVE_OMALLOC], [define if build with OMALLOC])
    359366  AC_DEFINE([HAVE_OMALLOC],[1],[HAVE_OMALLOC])
    360367fi
     
    367374# "configurable inline methods"
    368375if test "x$enable_cf_inline" != xno; then
     376  AH_TEMPLATE([CF_USE_INLINE], [define to use "configurable inline methods" (see cf_inline.cc)])
    369377  AC_DEFINE([CF_USE_INLINE],[1],[CF_USE_INLINE])
    370378fi
     
    372380# iostream
    373381if test "x$enable_streamio" = xno; then
     382  AH_TEMPLATE([NOSTREAMIO], [define to build factory without stream IO])
    374383  AC_DEFINE([NOSTREAMIO],[1],[NOSTREAMIO])
    375384else
     
    380389# assertions
    381390if test "x$enable_assertions" = xno; then
     391  AH_TEMPLATE([NOASSERT], [define if you do not want to activate assertions])
    382392  AC_DEFINE([NOASSERT],[1],[NOASSERT])
    383393fi
     
    385395# timing
    386396if test "x$enable_timing" != xno; then
     397  AH_TEMPLATE([TIMING], [define if you want to activate the timing stuff])
    387398  AC_DEFINE([TIMING],[1],[TIMING])
    388399fi
     
    390401# debugoutput
    391402if test "x$enable_debugoutput" != xno; then
     403  AH_TEMPLATE([DEBUGOUTPUT], [define if you want to have debugging output])
    392404  AC_DEFINE([DEBUGOUTPUT],[1],[DEBUGOUTPUT])
    393405fi
     
    414426AC_SUBST(uninstalltargets)
    415427
     428AH_TEMPLATE([FACTORYVERSION], [factory version])
    416429AC_DEFINE_UNQUOTED([FACTORYVERSION], "$factory_version", [FACTORYVERSION])
     430AH_TEMPLATE([FACTORYCONFIGURATION], [factory configuration])
    417431AC_DEFINE_UNQUOTED([FACTORYCONFIGURATION], "$factory_configuration", [FACTORYCONFIGURATION])
     432AH_TEMPLATE([GFTABLEDIR], [where the gftables live])
    418433AC_DEFINE_UNQUOTED([GFTABLEDIR], "$explicit_gftabledir", [GFTABLEDIR])
    419434
Note: See TracChangeset for help on using the changeset viewer.