Fix uversion setup (only numbers please)

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1672 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2001-11-01 16:55:12 +00:00
parent 52f21643d3
commit 6c202ba503

View File

@ -1,7 +1,7 @@
dnl -*- sh -*- dnl -*- sh -*-
dnl the "configure" script is made from this by running GNU "autoconf" dnl the "configure" script is made from this by running GNU "autoconf"
dnl dnl
dnl "$Id: configure.in,v 1.33.2.31.2.18 2001/11/01 16:43:38 easysw Exp $" dnl "$Id: configure.in,v 1.33.2.31.2.19 2001/11/01 16:55:12 easysw Exp $"
dnl dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl dnl
@ -46,8 +46,8 @@ DSONAME=""
dnl Get the operating system and version number... dnl Get the operating system and version number...
uname=`uname` uname=`uname`
uversion=`uname -r | sed -e 's/-.*$//g;s/[\.]//g'` uversion=`uname -r | sed -e '1,$s/[[^0-9]]//g'`
if test "$uname" = "IRIX64"; then if test x$uname = xIRIX64; then
uname="IRIX" uname="IRIX"
fi fi
@ -494,5 +494,5 @@ AC_OUTPUT(makeinclude fltk-config)
chmod +x fltk-config chmod +x fltk-config
dnl dnl
dnl End of "$Id: configure.in,v 1.33.2.31.2.18 2001/11/01 16:43:38 easysw Exp $". dnl End of "$Id: configure.in,v 1.33.2.31.2.19 2001/11/01 16:55:12 easysw Exp $".
dnl dnl