Changeset 37a11e in git
- Timestamp:
- Jan 22, 2015, 6:51:51 PM (9 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- ca8ff27d6b290f42a965227eda1ca3bbd637e204
- Parents:
- 1e210d65d8dc82cc829f8b88cf056d035bb9b311
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2015-01-22 18:51:51+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2015-01-22 18:57:37+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/configure.ac
r1e210d r37a11e 108 108 AC_DEFINE([SINGULAR],[1]) 109 109 AC_DEFINE([DISABLE_GMP_CPP],[1]) 110 # AC_DEFINE([NOSTREAMIO],[1]) 111 fi 112 113 # || test "x$with_Singular" = xyes 114 # Use no streamio (C++) if SINGULAR or explicitely disabled 115 if test "x$enable_streamio" = xno; then 110 116 AC_DEFINE([NOSTREAMIO],[1]) 111 fi112 113 # Use no streamio (C++) if SINGULAR or explicitely disabled114 if test "x$enable_streamio" = xno || test "x$with_Singular" = xyes; then115 AC_DEFINE([NOSTREAMIO],[1])116 else117 AC_CHECK_HEADERS(iostream.h strstream.h fstream.h iostream string fstream)118 AC_CHECK_HEADERS(ctype.h, , [ AC_MSG_ERROR(standard C header files not found) ])119 120 # since the FTE will compile only with stream IO enabled we will not121 # check for the necessary header files if stream IO is disabled122 AC_CHECK_HEADERS(stdarg.h signal.h errno.h unistd.h, ,123 [ AC_MSG_WARN(C/C++ header files not found.124 You will not be able to build the Factory Test Environment125 (though Factory itself should compile)) ])126 117 fi 127 118 128 119 AM_CONDITIONAL( 129 120 [WITH_PARSER_FOR_CANONICAL_FORM], 130 [test x$with_Singular != xyes && test x$enable_streamio != xno])121 [test "x$enable_streamio" = xyes]) 131 122 132 123 AC_ARG_VAR( [RESOURCES_INCLUDES], [INCLUDES for libresources] ) … … 240 231 # 241 232 AC_LANG_CPLUSPLUS 233 AC_LANG_PUSH([C++]) 242 234 243 235 AC_CHECK_HEADERS(stdio.h stdlib.h string.h time.h math.h, , 244 236 [ AC_MSG_ERROR(C header files not found) ]) 245 237 AC_CHECK_HEADERS(cstdio) 238 239 if test "x$enable_streamio" != xno; then 240 AC_CHECK_HEADERS(iostream.h strstream.h fstream.h iostream string fstream) 241 AC_CHECK_HEADERS(ctype.h, , [ AC_MSG_ERROR(standard C header files not found) ]) 242 243 # since the FTE will compile only with stream IO enabled we will not 244 # check for the necessary header files if stream IO is disabled 245 AC_CHECK_HEADERS(stdarg.h signal.h errno.h unistd.h, , 246 [ AC_MSG_WARN(C/C++ header files not found. 247 You will not be able to build the Factory Test Environment 248 (though Factory itself should compile)) ]) 249 fi 250 246 251 247 252 if test "x$enable_timing" != xno; then
Note: See TracChangeset
for help on using the changeset viewer.