Changeset 089d1f in git
- Timestamp:
- Oct 11, 2011, 7:53:52 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- ab788d2fa2a3a3cfadef40aeb1619e81ac889f17
- Parents:
- d2f9df5893fb5df92c3c6b562dd3d8d4ecdcf24a
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-10-11 19:53:52+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:13:56+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/configure.ac
rd2f9df r089d1f 113 113 AC_C_CONST 114 114 AC_C_INLINE 115 AH_TEMPLATE([INT64], []) 116 AC_DEFINE([INT64], [long long int]) 115 116 AH_TEMPLATE([INT64], [Defenition for INT64]) 117 # Always long long int???! 118 AC_DEFINE([INT64], [long long int]) 119 117 120 DX_INIT_DOXYGEN($PACKAGE_NAME, MYDOXYGENCONFIG) 118 121 … … 327 330 test "${M4FLAGS+set}" = set || M4FLAGS= 328 331 332 AH_TEMPLATE([SINGULAR], [define if linked to Singular]) 333 AH_TEMPLATE([DISABLE_GMP_CPP],[DISABLE_GMP_CPP]) 334 AH_TEMPLATE([NOSTREAMIO],[DISABLE_GMP_CPP]) 335 329 336 # Singular 330 337 if test "x$with_Singular" = xyes; then 331 AH_TEMPLATE([SINGULAR], [define if linked to Singular]) 332 AC_DEFINE([SINGULAR],[1],[SINGULAR]) 333 AC_DEFINE([DISABLE_GMP_CPP],[1],[DISABLE_GMP_CPP]) 334 AC_DEFINE([NOSTREAMIO],[1],[DISABLE_GMP_CPP]) 338 AC_DEFINE([SINGULAR],[1]) 339 AC_DEFINE([DISABLE_GMP_CPP],[1]) 340 AC_DEFINE([NOSTREAMIO],[1]) 335 341 fi 336 342 … … 362 368 fi 363 369 fi 370 371 AH_TEMPLATE([HAVE_OMALLOC], [define if build with OMALLOC]) 364 372 if test "$with_omalloc" = yes; then 365 AH_TEMPLATE([HAVE_OMALLOC], [define if build with OMALLOC]) 366 AC_DEFINE([HAVE_OMALLOC],[1],[HAVE_OMALLOC]) 373 AC_DEFINE([HAVE_OMALLOC],[1]) 367 374 fi 368 375 AC_MSG_RESULT($with_omalloc) … … 372 379 373 380 381 AH_TEMPLATE([CF_USE_INLINE], [define to use "configurable inline methods" (see cf_inline.cc)]) 374 382 # "configurable inline methods" 375 383 if test "x$enable_cf_inline" != xno; then 376 A H_TEMPLATE([CF_USE_INLINE], [define to use "configurable inline methods" (see cf_inline.cc)])377 AC_DEFINE([CF_USE_INLINE],[1],[CF_USE_INLINE]) 378 fi 379 384 AC_DEFINE([CF_USE_INLINE],[1]) 385 fi 386 387 AH_TEMPLATE([NOSTREAMIO], [define to build factory without stream IO]) 380 388 # iostream 381 389 if test "x$enable_streamio" = xno; then 382 AH_TEMPLATE([NOSTREAMIO], [define to build factory without stream IO]) 383 AC_DEFINE([NOSTREAMIO],[1],[NOSTREAMIO]) 390 AC_DEFINE([NOSTREAMIO],[1]) 384 391 else 385 392 factorysrc="$factorysrc \$(useiofactorysrc)" … … 387 394 fi 388 395 396 AH_TEMPLATE([NOASSERT], [define if you do not want to activate assertions]) 389 397 # assertions 390 398 if test "x$enable_assertions" = xno; then 391 A H_TEMPLATE([NOASSERT], [define if you do not want to activate assertions])392 AC_DEFINE([NOASSERT],[1],[NOASSERT]) 393 fi 394 399 AC_DEFINE([NOASSERT],[1]) 400 fi 401 402 AH_TEMPLATE([TIMING], [define if you want to activate the timing stuff]) 395 403 # timing 396 404 if test "x$enable_timing" != xno; then 397 AH_TEMPLATE([TIMING], [define if you want to activate the timing stuff]) 398 AC_DEFINE([TIMING],[1],[TIMING]) 405 AC_DEFINE([TIMING],[1]) 399 406 fi 400 407 401 408 # debugoutput 409 AH_TEMPLATE([DEBUGOUTPUT], [define if you want to have debugging output]) 402 410 if test "x$enable_debugoutput" != xno; then 403 AH_TEMPLATE([DEBUGOUTPUT], [define if you want to have debugging output]) 404 AC_DEFINE([DEBUGOUTPUT],[1],[DEBUGOUTPUT]) 411 AC_DEFINE([DEBUGOUTPUT],[1]) 405 412 fi 406 413 … … 427 434 428 435 AH_TEMPLATE([FACTORYVERSION], [factory version]) 429 AC_DEFINE_UNQUOTED([FACTORYVERSION], "$factory_version", [FACTORYVERSION]) 436 AC_DEFINE_UNQUOTED([FACTORYVERSION], "$factory_version") 437 430 438 AH_TEMPLATE([FACTORYCONFIGURATION], [factory configuration]) 431 AC_DEFINE_UNQUOTED([FACTORYCONFIGURATION], "$factory_configuration", [FACTORYCONFIGURATION]) 439 AC_DEFINE_UNQUOTED([FACTORYCONFIGURATION], "$factory_configuration") 440 432 441 AH_TEMPLATE([GFTABLEDIR], [where the gftables live]) 433 AC_DEFINE_UNQUOTED([GFTABLEDIR], "$explicit_gftabledir" , [GFTABLEDIR])442 AC_DEFINE_UNQUOTED([GFTABLEDIR], "$explicit_gftabledir") 434 443 435 444 AM_CONDITIONAL(
Note: See TracChangeset
for help on using the changeset viewer.