source: git/gfanlib/configure.ac @ 486f84

spielwiese
Last change on this file since 486f84 was 486f84, checked in by jgmbenoit <quatermaster@…>, 8 years ago
discard undesirable executable bits
  • Property mode set to 100644
File size: 1.4 KB
Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.63])
5AC_INIT([libgfan], [0.1], [ren@mathematik.uni-kl.de])
6AC_CONFIG_MACRO_DIR([../m4])
7AC_CONFIG_AUX_DIR([../build-aux])
8AC_CONFIG_SRCDIR([gfanlib.h])
9AC_CONFIG_HEADER([_config.h])
10
11AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) # -Wno-extra-portability -Werror silent-rules
12m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
13m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
14
15# Add pre'prefixed config
16AX_PREFIX_CONFIG_H([config.h],[],[_config.h])
17
18AM_MAINTAINER_MODE([enable])
19
20SING_RESET_FLAGS()
21SING_CHECK_SET_ARGS()
22
23# Checks for programs.
24# AC_PROG_CC
25# AC_PROG_CXX
26AC_PROG_LN_S
27#AC_PROG_INSTALL
28
29# Checks for libraries.
30LT_INIT
31
32# Checks for header files.
33AC_HEADER_STDC
34
35# Checks for typedefs, structures, and compiler characteristics.
36AC_C_INLINE
37
38LB_CHECK_GMP(4.0,,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)]))
39
40SING_CHECK_GFANLIB
41
42#AC_MSG_RESULT($ac_cv_singuname)
43#if test "$ac_cv_singuname" = unknown; then
44#  AC_MSG_WARN(Unknown architecture: Check singuname.sh)
45#  ac_cv_singuname="unknown"
46#fi
47#AC_DEFINE_UNQUOTED(S_UNAME, "$ac_cv_singuname")
48#SINGUNAME=$ac_cv_singuname
49#AC_SUBST(SINGUNAME)
50
51AC_CONFIG_FILES([Makefile])
52## AC_CONFIG_HEADERS([config.h])
53AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.