Changeset d11524 in git for libpolys/configure.ac
- Timestamp:
- Apr 14, 2011, 12:54:46 PM (13 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- 72015634c9aa4b237c52f66b5528b431f59c3c5c
- Parents:
- 691dbab4f58d7c8d1f15856e249e5d8a0be23d2d
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-04-14 12:54:46+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:12:34+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/configure.ac
r691dba rd11524 2 2 AM_INIT_AUTOMAKE 3 3 AC_CONFIG_MACRO_DIR([../m4]) 4 AC_CONFIG_SRCDIR([reporter/reporter.h]) 5 AC_CONFIG_HEADER([config.h]) 4 6 7 # misc/auxiliary.h 8 9 # Checks for programs. 10 AC_PROG_CXX 5 11 AC_PROG_CC 6 AC_PROG_CXX 12 AC_PROG_LN_S 13 AC_PROG_INSTALL 14 AC_PROG_RANLIB 15 AM_PROG_CC_C_O 7 16 8 17 # Checks for libraries. 9 18 LB_CHECK_GMP(,,AC_MSG_ERROR([Unable to find GMP on your machine: please use --with-gmp=PATH_TO_DIR_CONTAINING_LIB_AND_INCLUDE (see also ./configure --help if you do not understand what we are talking about)])) 10 19 20 # Checks for header files. 21 AC_HEADER_STDC 22 AC_CHECK_HEADERS([stdlib.h string.h unistd.h pwd.h sys/param.h limits.h]) 23 24 # Checks for typedefs, structures, and compiler characteristics. 25 AC_C_CONST 26 AC_C_INLINE 27 28 SING_CHECK_PIPE 29 30 # Checks for library functions. 31 AC_FUNC_VPRINTF 32 AC_CHECK_FUNC([vsnprintf], [AC_DEFINE([HAVE_VSNPRINTF], [1], 33 [Define if vsnprintf exists.])]) 34 # check for cpu properties 35 AC_CHECK_SIZEOF(long,4) 36 SING_CHECK_CPU 37 11 38 AC_CONFIG_FILES([Makefile]) 39 AC_CONFIG_FILES([misc/Makefile]) 40 AC_CONFIG_FILES([reporter/Makefile]) 41 AC_CONFIG_FILES([resources/Makefile]) 12 42 AC_CONFIG_FILES([tests/Makefile]) 13 AC_CONFIG_SUBDIRS([ misc reporter resourcescoeffs polys])43 AC_CONFIG_SUBDIRS([coeffs polys]) 14 44 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.