Changeset d11524 in git for libpolys/configure.ac


Ignore:
Timestamp:
Apr 14, 2011, 12:54:46 PM (13 years ago)
Author:
Mohamed Barakat <mohamed.barakat@…>
Branches:
(u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
Children:
72015634c9aa4b237c52f66b5528b431f59c3c5c
Parents:
691dbab4f58d7c8d1f15856e249e5d8a0be23d2d
git-author:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-04-14 12:54:46+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:12:34+01:00
Message:
- merge libpolys/{misc,reporter,resources}/configure.ac into libpolys/configure.ac
- seperate some of the checks in separate m4 files
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/configure.ac

    r691dba rd11524  
    22AM_INIT_AUTOMAKE
    33AC_CONFIG_MACRO_DIR([../m4])
     4AC_CONFIG_SRCDIR([reporter/reporter.h])
     5AC_CONFIG_HEADER([config.h])
    46
     7# misc/auxiliary.h
     8
     9# Checks for programs.
     10AC_PROG_CXX
    511AC_PROG_CC
    6 AC_PROG_CXX
     12AC_PROG_LN_S
     13AC_PROG_INSTALL
     14AC_PROG_RANLIB
     15AM_PROG_CC_C_O
    716
    817# Checks for libraries.
    918LB_CHECK_GMP(,,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)]))
    1019
     20# Checks for header files.
     21AC_HEADER_STDC
     22AC_CHECK_HEADERS([stdlib.h string.h unistd.h pwd.h sys/param.h limits.h])
     23
     24# Checks for typedefs, structures, and compiler characteristics.
     25AC_C_CONST
     26AC_C_INLINE
     27
     28SING_CHECK_PIPE
     29
     30# Checks for library functions.
     31AC_FUNC_VPRINTF
     32AC_CHECK_FUNC([vsnprintf], [AC_DEFINE([HAVE_VSNPRINTF], [1],
     33                               [Define if vsnprintf exists.])])
     34# check for cpu properties
     35AC_CHECK_SIZEOF(long,4)
     36SING_CHECK_CPU
     37
    1138AC_CONFIG_FILES([Makefile])
     39AC_CONFIG_FILES([misc/Makefile])
     40AC_CONFIG_FILES([reporter/Makefile])
     41AC_CONFIG_FILES([resources/Makefile])
    1242AC_CONFIG_FILES([tests/Makefile])
    13 AC_CONFIG_SUBDIRS([misc reporter resources coeffs polys])
     43AC_CONFIG_SUBDIRS([coeffs polys])
    1444AC_OUTPUT
Note: See TracChangeset for help on using the changeset viewer.