1 | AC_INIT([libpolys], [3.1.2.sw]) |
---|
2 | |
---|
3 | AC_CONFIG_MACRO_DIR([../m4]) |
---|
4 | AC_CONFIG_AUX_DIR([.]) |
---|
5 | AC_CONFIG_SRCDIR([reporter/reporter.h]) |
---|
6 | AC_CONFIG_HEADER([config.h misc/auxiliary.h]) |
---|
7 | |
---|
8 | AM_MAINTAINER_MODE |
---|
9 | AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) # -Wno-extra-portability -Werror silent-rules |
---|
10 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) |
---|
11 | m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) |
---|
12 | |
---|
13 | |
---|
14 | dnl Check if build env is sane |
---|
15 | AM_SANITY_CHECK |
---|
16 | |
---|
17 | # |
---|
18 | # - Check for CC and CXX but be careful about CFLAGS. |
---|
19 | # |
---|
20 | test "${CFLAGS+set}" = set || cflags_expl_set=no |
---|
21 | AC_PROG_CC |
---|
22 | test "${CXXFLAGS+set}" = set || cxxflags_expl_set=no |
---|
23 | AC_PROG_CXX |
---|
24 | if test "x$GCC" != xyes && test "x$GXX" != xyes; then |
---|
25 | AC_MSG_WARN(you better use gcc to compile Factory) |
---|
26 | else |
---|
27 | if test "x$GXX" = xyes && test "x$cxxflags_expl_set" = xno; then |
---|
28 | AC_MSG_WARN([we use \`' as default for \`CXXFLAGS' |
---|
29 | (instead of the configure default \`-g -O')]) |
---|
30 | fi |
---|
31 | if test "x$GCC" = xyes && test "x$cflags_expl_set" = xno; then |
---|
32 | AC_MSG_WARN([we use \`' as default for \`CFLAGS' |
---|
33 | (instead of the configure default \`-g -O')]) |
---|
34 | fi |
---|
35 | fi |
---|
36 | |
---|
37 | AM_PROG_CC_C_O |
---|
38 | AC_PROG_LN_S |
---|
39 | AC_PROG_INSTALL |
---|
40 | |
---|
41 | # AM_PROG_AR |
---|
42 | # Turn off shared libraries during beta-testing, since they |
---|
43 | # make the build process take too long. |
---|
44 | LT_INIT |
---|
45 | # ([shared]) |
---|
46 | # LT_INIT(dlopen disable-static) # doesn't work on PowerPC! |
---|
47 | |
---|
48 | # Checks for libraries. |
---|
49 | LB_CHECK_GMP(3.1.1,,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)])) |
---|
50 | LB_CHECK_NTL(5.0,,AC_MSG_WARN([Unable to find NTL (which is strongly recommended) on your machine: please use --with-ntl=PATH_TO_DIR_CONTAINING_LIB_AND_INCLUDE (see also ./configure --help if you do not understand what we are talking about)])) |
---|
51 | |
---|
52 | # Checks for library functions. |
---|
53 | AC_FUNC_ERROR_AT_LINE |
---|
54 | AC_CHECK_FUNCS([memmove memset pow sqrt strchr setenv putenv]) |
---|
55 | AC_FUNC_VPRINTF |
---|
56 | AC_FUNC_MALLOC |
---|
57 | AC_CHECK_FUNC([vsnprintf], [AC_DEFINE([HAVE_VSNPRINTF], [1], [Define if vsnprintf exists.])]) |
---|
58 | |
---|
59 | # Checks for header files. |
---|
60 | AC_HEADER_STDC |
---|
61 | AC_STDC_HEADERS |
---|
62 | AC_CHECK_HEADERS([stdlib.h string.h unistd.h pwd.h sys/param.h limits.h float.h execinfo.h]) |
---|
63 | |
---|
64 | # If the compiler supports GCC C++ ABI name demangling (has header |
---|
65 | # cxxabi.h and abi::__cxa_demangle() function), define |
---|
66 | # HAVE_GCC_ABI_DEMANGLE |
---|
67 | AX_CXX_GCC_ABI_DEMANGLE |
---|
68 | |
---|
69 | # Checks for typedefs, structures, and compiler characteristics. |
---|
70 | AC_C_CONST |
---|
71 | AC_C_INLINE |
---|
72 | AC_HEADER_STDBOOL |
---|
73 | AC_TYPE_SIZE_T |
---|
74 | |
---|
75 | SING_CHECK_PIPE |
---|
76 | |
---|
77 | # check for cpu properties |
---|
78 | AC_CHECK_SIZEOF(long,4) |
---|
79 | SING_CHECK_CPU |
---|
80 | |
---|
81 | #check for host: |
---|
82 | AC_CANONICAL_HOST |
---|
83 | case $host_os in |
---|
84 | *cygwin* ) LIBPREFIX="-Xlinker -Bdynamic";; |
---|
85 | * ) LIBPREFIX="";; |
---|
86 | esac |
---|
87 | |
---|
88 | dnl INCLUDES="" |
---|
89 | dnl dnl OS specific flags and options |
---|
90 | dnl case "$host" in |
---|
91 | dnl *-*-freebsd*) |
---|
92 | dnl LIBS="$LIBS -L/usr/local/lib -lc" |
---|
93 | dnl CFLAGS="$CFLAGS -I/usr/local/include" |
---|
94 | dnl INCLUDES="$INCLUDES -I/usr/local/include" |
---|
95 | dnl ;; |
---|
96 | dnl esac |
---|
97 | dnl AC_SUBST(INCLUDES) |
---|
98 | |
---|
99 | SING_CHECK_P_PROCS |
---|
100 | SING_CHECK_ARITH_RINGS |
---|
101 | SING_CHECK_FACTORY |
---|
102 | SING_CHECK_PLURAL |
---|
103 | |
---|
104 | # CFLAGS |
---|
105 | if test "x$GCC" = xyes && test "x$cflags_expl_set" = xno; then |
---|
106 | CFLAGS="" |
---|
107 | fi |
---|
108 | |
---|
109 | # CXXFLAGS |
---|
110 | if test "x$GXX" = xyes && test "x$cxxflags_expl_set" = xno; then |
---|
111 | CXXFLAGS="" |
---|
112 | fi |
---|
113 | |
---|
114 | #if test "x$prefix" != xNONE; then |
---|
115 | # PREFIX="$prefix" |
---|
116 | #else |
---|
117 | # PREFIX="$ac_default_prefix" |
---|
118 | #fi |
---|
119 | |
---|
120 | SING_CHECK_DEBUG |
---|
121 | |
---|
122 | # AC_SUBST(PREFIX) |
---|
123 | # AC_DEFINE_UNQUOTED(INSTALL_PREFIX,"$PREFIX",Prefix) |
---|
124 | |
---|
125 | AC_DEFINE([SINGULAR],[1],[SINGULAR]) |
---|
126 | AC_DEFINE([DISABLE_GMP_CPP],[1],[DISABLE_GMP_CPP]) |
---|
127 | AC_DEFINE([NOSTREAMIO],[1],[DISABLE_GMP_CPP]) |
---|
128 | |
---|
129 | AX_PYTHON_DEFAULT() |
---|
130 | AX_PYTHON_WITH_VERSION([2.4]) |
---|
131 | |
---|
132 | ## AC_DEFINE([HAVE_POLYEXTENSIONS], [1], [Enable the algebraic & transcendental extensions]) |
---|
133 | |
---|
134 | AC_CONFIG_FILES([Makefile]) |
---|
135 | AC_CONFIG_FILES([misc/Makefile]) |
---|
136 | AC_CONFIG_FILES([reporter/Makefile]) |
---|
137 | AC_CONFIG_FILES([coeffs/Makefile]) |
---|
138 | AC_CONFIG_FILES([polys/Makefile]) |
---|
139 | AC_CONFIG_FILES([tests/Makefile]) |
---|
140 | AC_CONFIG_FILES([libpolys-config]) |
---|
141 | AC_OUTPUT |
---|