Changeset 551
- Timestamp:
- Jan 8, 2008, 2:01:27 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r547 r551 44 44 AM_INIT_AUTOMAKE([std-options check-news]) 45 45 46 AC_MSG_NOTICE([version $VERSION])47 46 DEV=`echo $VERSION|sed 's/\([[a-z]]*\).*/\1/'` 48 47 if test "$DEV" = "pre"; then … … 53 52 MY_MAJOR=`echo $VERSION|sed 's/[[a-z]]*\([[0-9]]*\).*/\1/'` 54 53 MY_MINOR=`echo $VERSION|sed 's/[[a-z]]*[[0-9]]*\.\([[0-9]]*\).*/\1/'` 55 if test "$MY_MINOR" = "$VERSION" || "$MY_MAJOR" = "$VERSION" ; then56 AC_MSG_ERROR([version number is incorrect])54 if test "$MY_MINOR" = "$VERSION" || test "$MY_MAJOR" = "$VERSION" ; then 55 AC_MSG_ERROR([version number is incorrect]) 57 56 fi 58 57 … … 60 59 61 60 if test "$MY_PATCH" = "$VERSION"; then 62 MY_PATCH="0"61 MY_PATCH="0" 63 62 fi 64 63 … … 87 86 AC_PROG_CPP 88 87 AC_PROG_CXX 89 AC_PROG_GREP90 88 AC_PROG_INSTALL 91 89 AC_PROG_LIBTOOL 92 90 AC_PROG_RANLIB 93 AC_PROG_SED94 91 AC_CHECK_PROG([GNUPLOT],[gnuplot],[ok]) 95 92
Note: See TracChangeset
for help on using the changeset viewer.