summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-12-30 04:45:34 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-12-30 04:45:34 +0000
commit3a904f07b7669ed7e461c3e5c2e5a8e0dc494461 (patch)
treeecebc30c216511b2cde00d2bd738b902f6d153a4 /configure.in
parent25e570865c703094adb5310a05e3787f3949c827 (diff)
Bump version numbers to 1.1.0b9.
Default exec_prefix to ${prefix} instead of prefix value. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1898 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in
index 66b49fa82..fed986f32 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
dnl -*- sh -*-
dnl the "configure" script is made from this by running GNU "autoconf"
dnl
-dnl "$Id: configure.in,v 1.33.2.31.2.43 2001/12/19 19:23:30 easysw Exp $"
+dnl "$Id: configure.in,v 1.33.2.31.2.44 2001/12/30 04:45:34 easysw Exp $"
dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl
@@ -35,7 +35,7 @@ dnl FLTK library versions...
FL_MAJOR_VERSION=1
FL_MINOR_VERSION=1
FL_PATCH_VERSION=0
-FL_RELEASE_VERSION=b6
+FL_RELEASE_VERSION=b9
FL_API_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}
AC_SUBST(FL_MAJOR_VERSION)
@@ -460,10 +460,10 @@ if test "$prefix" = NONE; then
fi
if test "$exec_prefix" = NONE; then
- exec_prefix="$prefix"
+ exec_prefix="\${prefix}"
fi
-if test "$uname" = "IRIX" -a $uversion -ge 62 -a "$libdir" = "\${exec_prefix}/lib" -a "$exec_prefix" = "/usr"; then
+if test "$uname" = "IRIX" -a $uversion -ge 62 -a "$libdir" = "\${exec_prefix}/lib" -a "$exec_prefix" = "\${prefix}" -a "$prefix" = "/usr"; then
libdir="/usr/lib32"
fi
@@ -633,5 +633,5 @@ AC_OUTPUT(makeinclude fltk.list fltk-config FL/Makefile)
chmod +x fltk-config
dnl
-dnl End of "$Id: configure.in,v 1.33.2.31.2.43 2001/12/19 19:23:30 easysw Exp $".
+dnl End of "$Id: configure.in,v 1.33.2.31.2.44 2001/12/30 04:45:34 easysw Exp $".
dnl