X-Git-Url: https://ginac.de/ginac.git/static/gitweb.css/ginac.git?a=blobdiff_plain;f=configure.in;h=26627588159ca7a7c4339ca600ac4c3f3ad076e0;hb=cfea748404dec5fb2f2e3310d36eeb6640f13824;hp=945d2f59bb36d3d9755ea602a1102678616bed96;hpb=14937d28417386b405301c1d47fac257668cd731;p=ginac.git diff --git a/configure.in b/configure.in index 945d2f59..26627588 100644 --- a/configure.in +++ b/configure.in @@ -19,9 +19,9 @@ dnl (don't we all *love* M4?)... GINACLIB_MAJOR_VERSION=0 GINACLIB_MINOR_VERSION=9 -GINACLIB_MICRO_VERSION=1 -GINACLIB_INTERFACE_AGE=0 -GINACLIB_BINARY_AGE=0 +GINACLIB_MICRO_VERSION=4 +GINACLIB_INTERFACE_AGE=1 +GINACLIB_BINARY_AGE=1 GINACLIB_VERSION=$GINACLIB_MAJOR_VERSION.$GINACLIB_MINOR_VERSION.$GINACLIB_MICRO_VERSION AC_SUBST(GINACLIB_MAJOR_VERSION) @@ -103,12 +103,17 @@ GINSH_LIBS=$LIBS LIBS=$save_LIBS AC_SUBST(GINSH_LIBS) -dnl Make sure all the necessary new-style headers are installed on the system. -dnl If one of them cannot be found the system is probably not ANSI-conform -dnl enough so trying the .h-style headers is a waste of time. -AC_CHECK_HEADERS(iostream vector map string list typeinfo iterator stdexcept algorithm, , - AC_MSG_ERROR(need to have ANSI compliant headers)) -AC_CHECK_HEADERS(sstream strstream) +dnl Make sure all the necessary standard headers are installed on the system. +AC_CHECK_HEADER(iosfwd, , GINAC_ERROR([The standard header file could not be found.])) +AC_CHECK_HEADER(iostream, , GINAC_ERROR([The standard header file could not be found.])) +AC_CHECK_HEADER(vector, , GINAC_ERROR([The standard header file could not be found.])) +AC_CHECK_HEADER(list, , GINAC_ERROR([The standard header file could not be found.])) +AC_CHECK_HEADER(map, , GINAC_ERROR([The standard header file could not be found.])) +AC_CHECK_HEADER(string, , GINAC_ERROR([The standard header file could not be found.])) +AC_CHECK_HEADER(sstream, , GINAC_ERROR([The standard header file could not be found.])) +AC_CHECK_HEADER(typeinfo, , GINAC_ERROR([The standard header file could not be found.])) +AC_CHECK_HEADER(stdexcept, , GINAC_ERROR([The standard header file could not be found.])) +AC_CHECK_HEADER(algorithm, , GINAC_ERROR([The standard header file could not be found.])) dnl We need to have Bruno Haible's CLN installed. dnl (CLN versions >= 1.1.0 must have installed cln.m4 at a visible place,