Changeset 26b713 in git for gfanlib/configure.ac


Ignore:
Timestamp:
Feb 13, 2013, 4:23:42 PM (11 years ago)
Author:
Yue Ren <ren@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
81384bd682dd5f3d82dcdbb5f9b03b8e16f90d39
Parents:
7b8818e8f761639646d742a3b11bca3b5a9408da
git-author:
Yue Ren <ren@mathematik.uni-kl.de>2013-02-13 16:23:42+01:00
git-committer:
Yue Ren <ren@mathematik.uni-kl.de>2013-03-14 15:32:21+01:00
Message:
chg: updated gfanlib package to newest version in master
File:
1 edited

Legend:

Unmodified
Added
Removed
  • gfanlib/configure.ac

    • Property mode changed from 100644 to 100755
    r7b8818 r26b713  
    33
    44AC_PREREQ([2.63])
    5 AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
     5AC_INIT([libgfan], [0.1], [ren@mathematik.uni-kl.de])
     6AC_CONFIG_MACRO_DIR([../m4])
    67AC_CONFIG_SRCDIR([gfanlib.h])
    78#AC_CONFIG_HEADERS([config.h])
     9
     10AM_MAINTAINER_MODE
     11AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) # -Wno-extra-portability -Werror silent-rules
     12m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
     13m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
    814
    915# Checks for programs.
     
    1218AC_PROG_LN_S
    1319#AC_PROG_INSTALL
    14 AC_PROG_RANLIB
    1520
    1621# Checks for libraries.
     22
     23LT_INIT
    1724
    1825# Checks for header files.
    1926AC_HEADER_STDC
    2027AC_CHECK_HEADERS([gmp.h])
    21 AC_CHECK_HEADERS([cdd.h])
    2228AC_CHECK_HEADERS([setoper.h])
     29AC_CHECK_HEADERS([cdd.h],,,
     30[
     31# include <setoper.h>
     32])
    2333
    2434if test "$ac_cv_header_gmp_h" == no
     
    4353AC_C_INLINE
    4454
     55AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug], [build the debugging version of the libraries]),
     56 [if test "x$enableval"  = "xyes"; then
     57   ENABLE_DEBUG=yes
     58 fi], ENABLE_DEBUG=no)
     59
     60AM_CONDITIONAL(WANT_DEBUG, test x"${ENABLE_DEBUG}" == xyes)
     61
    4562#AC_MSG_RESULT($ac_cv_singuname)
    4663#if test "$ac_cv_singuname" = unknown; then
Note: See TracChangeset for help on using the changeset viewer.