source: git/gfanlib/configure.ac @ 3af3ca

spielwiese
Last change on this file since 3af3ca was def863, checked in by Frank Seelisch <seelisch@…>, 14 years ago
included Anders Jensens gfan lib git-svn-id: file:///usr/local/Singular/svn/trunk@13558 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.2 KB
Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.63])
5AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
6AC_CONFIG_SRCDIR([gfanlib.h])
7#AC_CONFIG_HEADERS([config.h])
8
9# Checks for programs.
10AC_PROG_CC
11AC_PROG_CXX
12AC_PROG_LN_S
13#AC_PROG_INSTALL
14AC_PROG_RANLIB
15
16# Checks for libraries.
17
18# Checks for header files.
19AC_HEADER_STDC
20AC_CHECK_HEADERS([gmp.h])
21AC_CHECK_HEADERS([cdd.h])
22AC_CHECK_HEADERS([setoper.h])
23
24if test "$ac_cv_header_gmp_h" == no
25then
26        AC_MSG_WARN([Error, gmp.h is missing!])
27        exit 1
28fi
29
30if test "$ac_cv_header_cdd_h" == no
31then
32        AC_MSG_WARN([Error, cdd.h is missing!])
33        exit 1
34fi
35
36if test "$ac_cv_header_setoper_h" == no
37then
38        AC_MSG_WARN([Error, setoper.h is missing!])
39        exit 1
40fi
41
42# Checks for typedefs, structures, and compiler characteristics.
43AC_C_INLINE
44
45#AC_MSG_RESULT($ac_cv_singuname)
46#if test "$ac_cv_singuname" = unknown; then
47#  AC_MSG_WARN(Unknown architecture: Check singuname.sh)
48#  ac_cv_singuname="unknown"
49#fi
50#AC_DEFINE_UNQUOTED(S_UNAME, "$ac_cv_singuname")
51#SINGUNAME=$ac_cv_singuname
52#AC_SUBST(SINGUNAME)
53
54AC_CONFIG_FILES([Makefile])
55AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.