source: git/libpolys/configure.ac @ f284db

spielwiese
Last change on this file since f284db was f284db, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
Fixed "enable" debug message chg: also some minor cleanup
  • Property mode set to 100644
File size: 4.0 KB
RevLine 
[ab788d]1AC_INIT([libpolys], [3.1.2.sw])
2
[8184703]3AC_CONFIG_MACRO_DIR([../m4])
4AC_CONFIG_AUX_DIR([.])
[d11524]5AC_CONFIG_SRCDIR([reporter/reporter.h])
[41dde6]6AC_CONFIG_HEADER([config.h misc/auxiliary.h])
[ab788d]7
[ea0001]8AM_MAINTAINER_MODE
[24a77fb]9AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) # -Wno-extra-portability -Werror silent-rules
[014b65]10
[84c376]11dnl Check if build env is sane
12AM_SANITY_CHECK
13
[f86531]14#
15# - Check for CC and CXX but be careful about CFLAGS.
16#
17test "${CFLAGS+set}" = set || cflags_expl_set=no
18AC_PROG_CC
19test "${CXXFLAGS+set}" = set || cxxflags_expl_set=no
20AC_PROG_CXX
21if test "x$GCC" != xyes && test "x$GXX" != xyes; then
22  AC_MSG_WARN(you better use gcc to compile Factory)
23else
24  if test "x$GXX" = xyes && test "x$cxxflags_expl_set" = xno; then
25    AC_MSG_WARN([we use \`' as default for \`CXXFLAGS'
26                    (instead of the configure default \`-g -O')])
27  fi
28  if test "x$GCC" = xyes && test "x$cflags_expl_set" = xno; then
29    AC_MSG_WARN([we use \`' as default for \`CFLAGS'
30                    (instead of the configure default \`-g -O')])
31  fi
32fi
33
[e078e0]34AM_PROG_CC_C_O
35AC_PROG_LN_S
36AC_PROG_INSTALL
37
38# AM_PROG_AR
[4c5b46]39# Turn off shared libraries during beta-testing, since they
40# make the build process take too long.
[80c102]41LT_INIT
42# ([shared])
43# LT_INIT(dlopen disable-static) # doesn't work on PowerPC!
[72b880]44
[4aa8610]45# Checks for libraries.
[9af8a63]46LB_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)]))
[643b1eb]47LB_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)]))
48
[720156]49# Checks for library functions.
50AC_FUNC_ERROR_AT_LINE
[eb2d25]51AC_CHECK_FUNCS([memmove memset pow sqrt strchr setenv putenv])
[ec0d9b]52AC_FUNC_VPRINTF
53AC_FUNC_MALLOC
[84c376]54AC_CHECK_FUNC([vsnprintf], [AC_DEFINE([HAVE_VSNPRINTF], [1], [Define if vsnprintf exists.])])
[720156]55
[d11524]56# Checks for header files.
57AC_HEADER_STDC
[84c376]58AC_STDC_HEADERS
[56bce65]59AC_CHECK_HEADERS([stdlib.h string.h unistd.h pwd.h sys/param.h limits.h float.h execinfo.h])
60
61# If the compiler supports GCC C++ ABI name demangling (has header
62#   cxxabi.h and abi::__cxa_demangle() function), define
63#   HAVE_GCC_ABI_DEMANGLE
64AX_CXX_GCC_ABI_DEMANGLE
[d11524]65
66# Checks for typedefs, structures, and compiler characteristics.
67AC_C_CONST
68AC_C_INLINE
[720156]69AC_HEADER_STDBOOL
70AC_TYPE_SIZE_T
[d11524]71
72SING_CHECK_PIPE
73
74# check for cpu properties
75AC_CHECK_SIZEOF(long,4)
76SING_CHECK_CPU
77
[720156]78#check for host:
79AC_CANONICAL_HOST
80case $host_os in
81  *cygwin* ) LIBPREFIX="-Xlinker -Bdynamic";;
82  * ) LIBPREFIX="";;
83esac
84
[84c376]85dnl INCLUDES=""
86dnl dnl OS specific flags and options
87dnl case "$host" in
88dnl     *-*-freebsd*)
89dnl         LIBS="$LIBS -L/usr/local/lib -lc"
90dnl     CFLAGS="$CFLAGS -I/usr/local/include"
91dnl     INCLUDES="$INCLUDES -I/usr/local/include"
92dnl     ;;
93dnl esac       
94dnl AC_SUBST(INCLUDES)
95
[ec0d9b]96SING_CHECK_P_PROCS
[568cf0]97SING_CHECK_ARITH_RINGS
[45e35b]98SING_CHECK_FACTORY
99SING_CHECK_PLURAL
[bea370]100
[f86531]101# CFLAGS
102if test "x$GCC" = xyes && test "x$cflags_expl_set" = xno; then
103  CFLAGS=""
104fi
105 
106# CXXFLAGS
107if test "x$GXX" = xyes && test "x$cxxflags_expl_set" = xno; then
108  CXXFLAGS=""
109fi
110
[f284db]111#if test "x$prefix" != xNONE; then
112#  PREFIX="$prefix"
113#else
114#  PREFIX="$ac_default_prefix"
115#fi
[964389]116
[f284db]117AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug], [build the debugging version of the libraries]),
[2b43ac]118 [if test "x$enableval"  = "xyes"; then
119   ENABLE_DEBUG=yes
120 fi], ENABLE_DEBUG=no)
121
122AM_CONDITIONAL(WANT_DEBUG, test x"${ENABLE_DEBUG}" == xyes)
123
[964389]124# AC_SUBST(PREFIX)
[f284db]125# AC_DEFINE_UNQUOTED(INSTALL_PREFIX,"$PREFIX",Prefix)
[964389]126
[f3ea6ce]127AC_DEFINE([SINGULAR],[1],[SINGULAR])
128AC_DEFINE([DISABLE_GMP_CPP],[1],[DISABLE_GMP_CPP])
129AC_DEFINE([NOSTREAMIO],[1],[DISABLE_GMP_CPP])
130
[047597]131## AC_DEFINE([HAVE_POLYEXTENSIONS], [1], [Enable the algebraic & transcendental extensions])
132
[014b65]133AC_CONFIG_FILES([Makefile])
[d11524]134AC_CONFIG_FILES([misc/Makefile])
135AC_CONFIG_FILES([reporter/Makefile])
[720156]136AC_CONFIG_FILES([coeffs/Makefile])
[ec0d9b]137AC_CONFIG_FILES([polys/Makefile])
[4aa8610]138AC_CONFIG_FILES([tests/Makefile])
[c5917f1]139AC_CONFIG_FILES([libpolys-config])
[014b65]140AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.