Changeset f92fa13 in git for Singular/configure.in


Ignore:
Timestamp:
Mar 16, 1998, 3:56:48 PM (26 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
5c8eae0ee4adf297d4ee70c4eb367499625899d8
Parents:
057fd3b14dfe97c1070a5e6e9ea465fb317ae57f
Message:
1998-03-16  Olaf Bachmann  <obachman@mathematik.uni-kl.de>

	* polys-impl.h: #define COMP_FAST

	* configure.in,Makefile.in: check for flex -P; increased version
	number to 1.1.7

1998-03-04  Olaf Bachmann  <obachman@mathematik.uni-kl.de>

	* febase.h: added macro assume()

	* spSpolyLoop.cc: Automatic generation of SpolyLoops using
	spSpolyLoop.pl

	* kstd*.cc: New calling interface to get SpolyLoop

	* ring.h: Introduced rOrderType_t


git-svn-id: file:///usr/local/Singular/svn/trunk@1236 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/configure.in

    r057fd3 rf92fa13  
    88SINGULAR_MAJOR_VERSION=1
    99SINGULAR_MINOR_VERSION=1
    10 SINGULAR_SUB_VERSION=6
     10SINGULAR_SUB_VERSION=7
    1111VERSION_DATE="March 1998"
    1212AC_SUBST(SINGULAR_MAJOR_VERSION)
     
    6767fi
    6868
     69AC_PROG_LEX
     70# make sure lex accepts -P option
     71if test "${ac_cv_prog_LEX+set}" = set; then
     72  AC_MSG_CHECKING(whether ${ac_cv_prog_LEX} accepts -P)
     73  if ${ac_cv_prog_LEX} -P < /dev/null 2>&1| grep flag > /dev/null 2>&1; then
     74    AC_MSG_RESULT(no)
     75    AC_MSG_WARN(Can not run ${ac_cv_prog_LEX} with -P; make might fail)
     76    LEXP=touch
     77  else
     78    AC_MSG_RESULT(yes)
     79    LEXP=${ac_cv_prog_LEX}
     80  fi
     81fi
     82AC_SUBST(LEXP)
    6983AC_PROG_CC
    7084AC_PROG_CPP
Note: See TracChangeset for help on using the changeset viewer.