source: git/gfanlib/configure.ac @ 2be649e

spielwiese
Last change on this file since 2be649e was 2be649e, checked in by Oleksandr Motsak <motsak@…>, 10 years ago
Enable AM_MAINTAINER_MODE everywhere
  • Property mode set to 100755
File size: 1.3 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_SRCDIR([gfanlib.h])
8#AC_CONFIG_HEADERS([config.h])
9
10AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) # -Wno-extra-portability -Werror silent-rules
11m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
12m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
13AM_MAINTAINER_MODE([enable])
14
15
16SING_RESET_FLAGS()
17SING_CHECK_SET_ARGS()
18
19# Checks for programs.
20# AC_PROG_CC
21# AC_PROG_CXX
22AC_PROG_LN_S
23#AC_PROG_INSTALL
24
25# Checks for libraries.
26LT_INIT
27
28# Checks for header files.
29AC_HEADER_STDC
30
31# Checks for typedefs, structures, and compiler characteristics.
32AC_C_INLINE
33
34LB_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)]))
35
36SING_CHECK_GFANLIB
37
38#AC_MSG_RESULT($ac_cv_singuname)
39#if test "$ac_cv_singuname" = unknown; then
40#  AC_MSG_WARN(Unknown architecture: Check singuname.sh)
41#  ac_cv_singuname="unknown"
42#fi
43#AC_DEFINE_UNQUOTED(S_UNAME, "$ac_cv_singuname")
44#SINGUNAME=$ac_cv_singuname
45#AC_SUBST(SINGUNAME)
46
47AC_CONFIG_FILES([Makefile])
48AC_CONFIG_HEADERS([config.h])
49AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.