Changeset 6b86672 in git for Singular/configure.in


Ignore:
Timestamp:
Mar 5, 2001, 1:08:20 PM (23 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
07a268cace99ce7229a8b6c651fab8f17e3e5931
Parents:
a3705ae0dbd6279402189c585e055106566f94f1
Message:
*hannes: version 2-1


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

Legend:

Unmodified
Added
Removed
  • Singular/configure.in

    ra3705ae r6b86672  
    4747
    4848SINGULAR_MAJOR_VERSION=${SINGULAR_MAJOR_VERSION:-2}
    49 SINGULAR_MINOR_VERSION=${SINGULAR_MINOR_VERSION:-0}
     49SINGULAR_MINOR_VERSION=${SINGULAR_MINOR_VERSION:-1}
    5050SINGULAR_SUB_VERSION=${SINGULAR_SUB_VERSION:-0}
    5151SINGULAR_VERSION="${SINGULAR_VERSION:-$SINGULAR_MAJOR_VERSION${VERSION_SEP}$SINGULAR_MINOR_VERSION${VERSION_SEP}$SINGULAR_SUB_VERSION}"
    52 VERSION_DATE=${VERSION_DATE:-"February 2001"}
     52VERSION_DATE=${VERSION_DATE:-"March 2001"}
    5353
    5454dnl pass them on into the Makefiles
     
    788788
    789789AC_MSG_CHECKING(whether to have namespaces)
    790 if test "$with_namespaces" != yes; then
    791   AC_MSG_RESULT(no)
     790if test "$with_namespaces" != no; then
     791  AC_MSG_RESULT(yes)
    792792else
    793793  AC_DEFINE(HAVE_NAMESPACES)
    794   AC_MSG_RESULT(yes)
     794  AC_MSG_RESULT(no)
    795795fi
    796796
    797797AC_MSG_CHECKING(whether to have dynamic modules)
    798 if test "$with_dynamic_modules" != yes || test "$ac_have_dl" != yes; then
     798if test "$with_dynamic_modules" == no || test "$ac_have_dl" != yes; then
    799799  AC_MSG_RESULT(no)
    800800else
Note: See TracChangeset for help on using the changeset viewer.