2000-04-27 04:17:54 +04:00
|
|
|
dnl -*- sh -*-
|
|
|
|
dnl the "configure" script is made from this by running GNU "autoconf"
|
|
|
|
dnl
|
2002-01-06 16:40:32 +03:00
|
|
|
dnl "$Id: configure.in,v 1.33.2.31.2.46 2002/01/06 13:40:27 easysw Exp $"
|
2000-04-27 04:17:54 +04:00
|
|
|
dnl
|
|
|
|
dnl Configuration script for the Fast Light Tool Kit (FLTK).
|
|
|
|
dnl
|
2002-01-01 18:11:33 +03:00
|
|
|
dnl Copyright 1998-2002 by Bill Spitzak and others.
|
2000-04-27 04:17:54 +04:00
|
|
|
dnl
|
|
|
|
dnl This library is free software; you can redistribute it and/or
|
|
|
|
dnl modify it under the terms of the GNU Library General Public
|
|
|
|
dnl License as published by the Free Software Foundation; either
|
|
|
|
dnl version 2 of the License, or (at your option) any later version.
|
|
|
|
dnl
|
|
|
|
dnl This library is distributed in the hope that it will be useful,
|
|
|
|
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
dnl Library General Public License for more details.
|
|
|
|
dnl
|
|
|
|
dnl You should have received a copy of the GNU Library General Public
|
|
|
|
dnl License along with this library; if not, write to the Free Software
|
|
|
|
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
dnl USA.
|
|
|
|
dnl
|
2000-06-06 01:21:24 +04:00
|
|
|
dnl Please report all bugs and problems to "fltk-bugs@fltk.org".
|
2000-04-27 04:17:54 +04:00
|
|
|
dnl
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-11-30 00:50:05 +03:00
|
|
|
dnl We need at least autoconf 2.13...
|
|
|
|
AC_PREREQ(2.13)
|
|
|
|
|
2001-11-28 01:03:29 +03:00
|
|
|
dnl Required file in package...
|
1998-12-07 17:35:53 +03:00
|
|
|
AC_INIT(src/Fl.cxx)
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2001-11-28 01:03:29 +03:00
|
|
|
dnl FLTK library versions...
|
|
|
|
FL_MAJOR_VERSION=1
|
|
|
|
FL_MINOR_VERSION=1
|
|
|
|
FL_PATCH_VERSION=0
|
2001-12-30 07:45:34 +03:00
|
|
|
FL_RELEASE_VERSION=b9
|
2001-11-28 01:03:29 +03:00
|
|
|
FL_API_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}
|
|
|
|
|
|
|
|
AC_SUBST(FL_MAJOR_VERSION)
|
|
|
|
AC_SUBST(FL_MINOR_VERSION)
|
|
|
|
AC_SUBST(FL_PATCH_VERSION)
|
|
|
|
AC_SUBST(FL_RELEASE_VERSION)
|
|
|
|
AC_SUBST(FL_API_VERSION)
|
|
|
|
|
|
|
|
dnl How do we make libraries?
|
1998-10-20 20:41:24 +04:00
|
|
|
AC_PROG_RANLIB
|
2001-11-28 01:03:29 +03:00
|
|
|
AC_PATH_PROG(AR, ar)
|
|
|
|
|
|
|
|
if test "$RANLIB" != ":"; then
|
|
|
|
LIBCOMMAND="$AR cr"
|
|
|
|
else
|
|
|
|
LIBCOMMAND="$AR crs"
|
|
|
|
fi
|
|
|
|
|
|
|
|
DSOCOMMAND="echo"
|
|
|
|
DSONAME=""
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2001-08-02 22:08:36 +04:00
|
|
|
LINKFLTK="-lfltk"
|
2001-09-29 19:57:32 +04:00
|
|
|
LINKFLTKGL="-lfltk_gl"
|
2001-08-02 22:15:44 +04:00
|
|
|
GLDEMOS="gldemos"
|
2001-08-02 22:08:36 +04:00
|
|
|
|
|
|
|
LIBNAME="../lib/libfltk.a"
|
2001-09-29 19:57:32 +04:00
|
|
|
GLLIBNAME="../lib/libfltk_gl.a"
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2000-04-27 04:17:54 +04:00
|
|
|
dnl Get the operating system and version number...
|
1999-02-22 23:53:35 +03:00
|
|
|
|
|
|
|
uname=`uname`
|
2001-11-01 19:55:12 +03:00
|
|
|
uversion=`uname -r | sed -e '1,$s/[[^0-9]]//g'`
|
2001-11-22 16:56:10 +03:00
|
|
|
if test $uname = IRIX64; then
|
1999-02-22 23:53:35 +03:00
|
|
|
uname="IRIX"
|
|
|
|
fi
|
|
|
|
|
2000-04-27 04:17:54 +04:00
|
|
|
dnl Clear debugging flags and only enable debugging if the user asks for
|
|
|
|
dnl it.
|
1999-02-01 22:40:25 +03:00
|
|
|
|
1998-12-02 18:39:39 +03:00
|
|
|
DEBUGFLAG=""
|
1999-03-04 17:48:08 +03:00
|
|
|
PICFLAG=0
|
1999-02-01 22:40:25 +03:00
|
|
|
CFLAGS="${CFLAGS:=}"
|
|
|
|
CXXFLAGS="${CXXFLAGS:=}"
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2001-11-22 16:56:10 +03:00
|
|
|
case $uname in
|
|
|
|
CYGWIN*)
|
2001-11-28 01:03:29 +03:00
|
|
|
AC_ARG_ENABLE(cygwin, [ --enable-cygwin use the CygWin libraries [default=yes]],
|
|
|
|
[if test x$enable_cygwin = xno; then
|
|
|
|
CPPFLAGS="$CPPFLAGS -mno-cygwin"
|
|
|
|
CFLAGS="$CFLAGS -mno-cygwin"
|
|
|
|
CXXFLAGS="$CXXFLAGS -mno-cygwin"
|
|
|
|
fi])
|
2001-11-22 16:56:10 +03:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2001-11-28 01:03:29 +03:00
|
|
|
AC_ARG_ENABLE(debug, [ --enable-debug turn on debugging [default=no]],
|
|
|
|
[if eval "test x$enable_debug = xyes"; then
|
2001-08-02 22:08:36 +04:00
|
|
|
DEBUGFLAG="-g "
|
2001-11-28 01:03:29 +03:00
|
|
|
fi])
|
2001-04-25 17:34:43 +04:00
|
|
|
AC_ARG_ENABLE(gl, [ --enable-gl turn on OpenGL support [default=yes]])
|
1998-10-21 18:00:53 +04:00
|
|
|
AC_ARG_ENABLE(shared, [ --enable-shared turn on shared libraries [default=no]],[
|
2001-11-28 01:03:29 +03:00
|
|
|
DSOLINK=""
|
|
|
|
AC_SUBST(DSOLINK)
|
|
|
|
if test x$enable_shared = xyes; then
|
|
|
|
PICFLAG=1
|
|
|
|
case $uname in
|
2001-11-28 23:43:44 +03:00
|
|
|
*BSD* | Darwin*)
|
|
|
|
DSONAME="libfltk.$FL_API_VERSION.dylib"
|
|
|
|
GLDSONAME="libfltk_gl.$FL_API_VERSION.dylib"
|
|
|
|
DSOCOMMAND="ld $DSOFLAGS -dylib /usr/lib/dylib1.o -lc"
|
|
|
|
if test "$libdir" != "/usr/lib"; then
|
|
|
|
DSOLINK="-Wl,-rpath,$libdir"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
2001-11-28 01:03:29 +03:00
|
|
|
SunOS* | UNIX_S*)
|
|
|
|
DSONAME="libfltk.so.$FL_API_VERSION"
|
|
|
|
GLDSONAME="libfltk_gl.so.$FL_API_VERSION"
|
|
|
|
DSOCOMMAND="\$(CXX) -h \$@ \$(LDLIBS) -G $DEBUGFLAG -o"
|
|
|
|
if test "$libdir" != "/usr/lib"; then
|
|
|
|
DSOLINK="-R$libdir"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
HP-UX*)
|
|
|
|
DSONAME="libfltk.sl.$FL_API_VERSION"
|
|
|
|
GLDSONAME="libfltk_gl.sl.$FL_API_VERSION"
|
|
|
|
DSOCOMMAND="ld -b -z +h \$@ $DEBUGFLAG -o"
|
|
|
|
if test "$libdir" != "/usr/lib"; then
|
|
|
|
DSOLINK="-Wl,-rpath,$libdir"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
IRIX* | OSF1*)
|
|
|
|
DSONAME="libfltk.so.$FL_API_VERSION"
|
|
|
|
GLDSONAME="libfltk_gl.so.$FL_API_VERSION"
|
|
|
|
DSOCOMMAND="\$(CXX) -Wl,-soname,\$@ \$(LDLIBS) -shared $DEBUGFLAG -o"
|
|
|
|
if test "$libdir" != "/usr/lib" - a "$libdir" != "/usr/lib32"; then
|
|
|
|
DSOLINK="-Wl,-rpath,$libdir"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
FreeBSD* | NetBSD* | OpenBSD* | Linux*)
|
|
|
|
DSONAME="libfltk.so.$FL_API_VERSION"
|
|
|
|
GLDSONAME="libfltk_gl.so.$FL_API_VERSION"
|
|
|
|
DSOCOMMAND="\$(CXX) -Wl,-soname,\$@ \$(LDLIBS) -shared -fPIC $DEBUGFLAG -o"
|
|
|
|
if test "$libdir" != "/usr/lib"; then
|
|
|
|
DSOLINK="-Wl,-rpath,$libdir"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
AIX*)
|
|
|
|
DSONAME="libfltk_s.a"
|
|
|
|
GLDSONAME="libfltk_gl_s.a"
|
|
|
|
DSOCOMMAND="\$(CXX) -Wl,-bexpall,-bM:SRE,-bnoentry -o"
|
|
|
|
;;
|
|
|
|
CYGWIN*)
|
|
|
|
AC_MSG_WARN(Shared libraries are not supported under CygWin.)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
AC_MSG_WARN(Shared libraries may not be supported. Trying -shared option with compiler.)
|
|
|
|
DSONAME="libfltk.so.$FL_API_VERSION"
|
|
|
|
GLDSONAME="libfltk_gl.so.$FL_API_VERSION"
|
|
|
|
DSOCOMMAND="\$(CXX) -Wl,-soname,\$@ \$(LDLIBS) -shared $DEBUGFLAG -o"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi])
|
2001-12-15 00:02:24 +03:00
|
|
|
AC_ARG_ENABLE(threads, [ --enable-threads enable multi-threading support],,enable_threads=no)
|
1998-10-20 20:41:24 +04:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CXX
|
2000-04-27 04:17:54 +04:00
|
|
|
dnl AC_PROG_INSTALL
|
2001-02-12 18:12:14 +03:00
|
|
|
AC_PATH_PROG(NROFF,nroff)
|
|
|
|
if test "$NROFF" = ""; then
|
|
|
|
AC_PATH_PROG(GROFF,groff)
|
|
|
|
if test "$GROFF" = ""; then
|
|
|
|
NROFF="echo"
|
|
|
|
else
|
|
|
|
NROFF="$GROFF -T ascii"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
AC_PATH_PROG(HTMLDOC,htmldoc)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
AC_C_BIGENDIAN
|
|
|
|
|
|
|
|
AC_CHECK_SIZEOF(short, 2)
|
|
|
|
AC_CHECK_SIZEOF(int, 4)
|
|
|
|
AC_CHECK_SIZEOF(long, 4)
|
|
|
|
if test $ac_cv_sizeof_short -eq 2; then
|
1999-02-18 18:05:50 +03:00
|
|
|
AC_DEFINE(U16,unsigned short)
|
1998-10-06 22:21:25 +04:00
|
|
|
fi
|
|
|
|
if test $ac_cv_sizeof_int -eq 4; then
|
1999-02-18 18:05:50 +03:00
|
|
|
AC_DEFINE(U32,unsigned)
|
1998-10-06 22:21:25 +04:00
|
|
|
else
|
1999-02-18 18:05:50 +03:00
|
|
|
if test $ac_cv_sizeof_long -eq 4; then
|
|
|
|
AC_DEFINE(U32,unsigned long)
|
|
|
|
fi
|
1998-10-06 22:21:25 +04:00
|
|
|
fi
|
|
|
|
if test $ac_cv_sizeof_int -eq 8; then
|
1999-02-18 18:05:50 +03:00
|
|
|
AC_DEFINE(U64,unsigned)
|
1998-10-06 22:21:25 +04:00
|
|
|
else
|
1999-02-18 18:05:50 +03:00
|
|
|
if test $ac_cv_sizeof_long -eq 8; then
|
|
|
|
AC_DEFINE(U64,unsigned long)
|
|
|
|
fi
|
1998-10-06 22:21:25 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
AC_HEADER_DIRENT
|
2001-04-27 21:00:23 +04:00
|
|
|
AC_CHECK_HEADER(sys/select.h,AC_DEFINE(HAVE_SYS_SELECT_H))
|
|
|
|
AC_CHECK_HEADER(sys/stdtypes.h,AC_DEFINE(HAVE_SYS_SELECT_H))
|
1999-08-09 17:35:04 +04:00
|
|
|
AC_CHECK_FUNC(scandir,
|
2001-02-12 18:12:14 +03:00
|
|
|
if test "$uname" = SunOS -o "$uname" = QNX; then
|
2001-11-22 16:56:10 +03:00
|
|
|
AC_MSG_WARN(Not using $uname scandir emulation function.)
|
1999-08-09 17:35:04 +04:00
|
|
|
else
|
1999-02-18 18:05:50 +03:00
|
|
|
AC_DEFINE(HAVE_SCANDIR)
|
|
|
|
fi)
|
1999-08-09 17:35:04 +04:00
|
|
|
AC_CHECK_FUNC(vsnprintf,
|
|
|
|
if test "$uname" = "HP-UX" -a "$uversion" = "1020"; then
|
2001-11-22 16:56:10 +03:00
|
|
|
AC_MSG_WARN(Not using built-in vsnprintf function because you are running HP-UX 10.20.)
|
1999-08-09 17:35:04 +04:00
|
|
|
else
|
1999-02-22 23:53:35 +03:00
|
|
|
AC_DEFINE(HAVE_VSNPRINTF)
|
|
|
|
fi)
|
1999-08-09 17:35:04 +04:00
|
|
|
AC_CHECK_FUNC(snprintf,
|
|
|
|
if test "$uname" = "HP-UX" -a "$uversion" = "1020"; then
|
2001-11-22 16:56:10 +03:00
|
|
|
AC_MSG_WARN(Not using built-in snprintf function because you are running HP-UX 10.20.)
|
1999-08-09 17:35:04 +04:00
|
|
|
else
|
1999-02-22 23:53:35 +03:00
|
|
|
AC_DEFINE(HAVE_SNPRINTF)
|
|
|
|
fi)
|
2000-11-20 22:02:20 +03:00
|
|
|
AC_CHECK_FUNCS(vsprintf)
|
2001-11-28 01:03:29 +03:00
|
|
|
AC_CHECK_HEADER(strings.h, AC_DEFINE(HAVE_STRINGS_H))
|
2000-11-20 22:02:20 +03:00
|
|
|
AC_CHECK_FUNCS(strcasecmp)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-11-20 23:10:59 +03:00
|
|
|
dnl FLTK library uses math library functions...
|
2001-11-22 16:56:10 +03:00
|
|
|
AC_SEARCH_LIBS(pow, m)
|
2001-11-20 23:10:59 +03:00
|
|
|
|
2001-08-02 23:43:49 +04:00
|
|
|
dnl Check for image libraries...
|
|
|
|
SAVELIBS="$LIBS"
|
|
|
|
IMAGELIBS=""
|
|
|
|
|
|
|
|
AC_SUBST(IMAGELIBS)
|
|
|
|
|
|
|
|
AC_CHECK_HEADER(jpeglib.h,
|
|
|
|
AC_CHECK_LIB(jpeg, jpeg_destroy_decompress,
|
|
|
|
AC_DEFINE(HAVE_LIBJPEG)
|
|
|
|
IMAGELIBS="$IMAGELIBS -ljpeg"))
|
|
|
|
|
|
|
|
AC_CHECK_HEADER(zlib.h,
|
|
|
|
AC_CHECK_LIB(z, gzopen,
|
|
|
|
AC_DEFINE(HAVE_LIBZ)
|
|
|
|
IMAGELIBS="$IMAGELIBS -lz"
|
|
|
|
LIBS="$LIBS -lz"))
|
|
|
|
|
|
|
|
AC_CHECK_HEADER(png.h,
|
|
|
|
AC_CHECK_LIB(png, png_read_rows,
|
|
|
|
AC_DEFINE(HAVE_LIBPNG)
|
2001-11-20 23:10:59 +03:00
|
|
|
IMAGELIBS="-lpng $IMAGELIBS"
|
|
|
|
LIBS="-lpng $LIBS"
|
2001-10-19 18:04:08 +04:00
|
|
|
AC_CHECK_FUNCS(png_get_valid png_set_tRNS_to_alpha png_read_destroy)))
|
2001-08-02 23:43:49 +04:00
|
|
|
|
|
|
|
dnl Restore original LIBS settings...
|
|
|
|
LIBS="$SAVELIBS"
|
|
|
|
|
2001-11-30 00:12:15 +03:00
|
|
|
dnl See if we need a .exe extension on executables...
|
2001-11-28 23:43:44 +03:00
|
|
|
AC_EXEEXT
|
|
|
|
|
2001-11-27 20:44:08 +03:00
|
|
|
dnl Check for standard graphics API and OpenGL...
|
2001-11-20 00:25:35 +03:00
|
|
|
HLINKS=
|
|
|
|
|
2001-12-06 05:20:36 +03:00
|
|
|
dnl some environments need postprocessing (Darwin, MacOS)
|
2001-12-14 22:34:30 +03:00
|
|
|
POSTBUILD=:
|
2001-12-06 05:20:36 +03:00
|
|
|
|
2001-12-09 23:26:24 +03:00
|
|
|
dnl Check for pthreads for multi-threaded apps...
|
2001-12-17 18:36:28 +03:00
|
|
|
have_pthread=no
|
|
|
|
|
2001-12-15 00:02:24 +03:00
|
|
|
if test x"$enable_threads" = xyes; then
|
2001-12-09 23:26:24 +03:00
|
|
|
AC_CHECK_HEADER(pthread.h, AC_DEFINE(HAVE_PTHREAD_H))
|
|
|
|
AC_SEARCH_LIBS(pthread_create, pthread)
|
2001-12-17 18:36:28 +03:00
|
|
|
|
|
|
|
if test x"$ac_cv_search_pthread_create" = xyes -a x$ac_cv_header_pthread_h = xyes; then
|
|
|
|
have_pthread=yes
|
|
|
|
else
|
|
|
|
dnl *BSD uses -pthread option...
|
|
|
|
AC_MSG_CHECKING([for pthread_create using -pthread])
|
|
|
|
SAVELIBS="$LIBS"
|
|
|
|
LIBS="-pthread $LIBS"
|
|
|
|
AC_TRY_LINK([#include <pthread.h>],
|
|
|
|
[pthread_create(0, 0, 0, 0);],
|
|
|
|
LIBS="-pthread $SAVELIBS"
|
|
|
|
have_pthread=yes,
|
|
|
|
LIBS="$SAVELIBS")
|
|
|
|
AC_MSG_RESULT([$have_pthread])
|
|
|
|
fi
|
2001-12-09 23:26:24 +03:00
|
|
|
fi
|
|
|
|
|
2001-12-15 00:02:24 +03:00
|
|
|
THREADS=""
|
|
|
|
|
2001-11-17 18:55:36 +03:00
|
|
|
case $uname in
|
|
|
|
CYGWIN*)
|
|
|
|
dnl Cygwin environment...
|
2001-11-30 01:22:08 +03:00
|
|
|
LIBS="$LIBS -mwindows -lwsock32"
|
2001-11-28 23:43:44 +03:00
|
|
|
CFLAGS="$CFLAGS -mwindows -DWIN32"
|
|
|
|
CXXFLAGS="$CXXFLAGS -mwindows -DWIN32"
|
2001-12-04 22:57:45 +03:00
|
|
|
|
2001-11-17 18:55:36 +03:00
|
|
|
if test x$enable_gl != xno; then
|
|
|
|
AC_CHECK_HEADER(GL/gl.h,
|
|
|
|
AC_DEFINE(HAVE_GL)
|
|
|
|
GLLIB="-lopengl32")
|
|
|
|
AC_CHECK_HEADER(GL/glu.h,
|
|
|
|
AC_DEFINE(HAVE_GL_GLU_H)
|
|
|
|
GLLIB="-lglu32 $GLLIB")
|
|
|
|
else
|
|
|
|
LINKFLTKGL=""
|
|
|
|
GLLIBNAME=""
|
|
|
|
GLDSONAME=""
|
|
|
|
GLDEMOS=""
|
|
|
|
fi
|
2001-12-04 22:57:45 +03:00
|
|
|
|
2001-12-15 00:02:24 +03:00
|
|
|
if test "x$ac_cv_search_pthread_create" != xno -a x"$enable_threads" = xyes; then
|
2001-12-09 23:26:24 +03:00
|
|
|
AC_DEFINE(HAVE_PTHREAD)
|
2001-12-15 00:02:24 +03:00
|
|
|
THREADS="threads.exe"
|
2001-12-09 23:26:24 +03:00
|
|
|
fi
|
|
|
|
|
2001-12-04 22:57:45 +03:00
|
|
|
# Don't make symlinks since Windows is not case sensitive.
|
|
|
|
HLINKS="#"
|
2001-11-17 18:55:36 +03:00
|
|
|
;;
|
2001-11-27 20:44:08 +03:00
|
|
|
Darwin*)
|
|
|
|
# MacOS X uses Carbon for graphics...
|
|
|
|
LIBS="$LIBS -framework Carbon -framework ApplicationServices"
|
2001-12-04 22:57:45 +03:00
|
|
|
|
2001-11-27 20:44:08 +03:00
|
|
|
if test x$enable_gl != xno; then
|
2001-11-27 20:48:16 +03:00
|
|
|
AC_DEFINE(HAVE_GL)
|
|
|
|
AC_DEFINE(HAVE_GL_GLU_H)
|
2001-12-06 05:20:36 +03:00
|
|
|
GLLIB="-framework AGL -framework OpenGL"
|
2001-11-27 20:44:08 +03:00
|
|
|
else
|
|
|
|
LINKFLTKGL=""
|
|
|
|
GLLIBNAME=""
|
|
|
|
GLDSONAME=""
|
|
|
|
GLDEMOS=""
|
|
|
|
fi
|
2001-12-07 01:16:49 +03:00
|
|
|
|
2001-12-04 22:57:45 +03:00
|
|
|
# Don't make symlinks because HFS+ is not case sensitive...
|
|
|
|
HLINKS="#"
|
2001-12-07 01:16:49 +03:00
|
|
|
|
2001-12-06 05:20:36 +03:00
|
|
|
# Add a postbuild step after linking applications
|
2001-12-14 22:34:30 +03:00
|
|
|
POSTBUILD="/Developer/Tools/Rez -t APPL -o"
|
2001-11-27 20:44:08 +03:00
|
|
|
;;
|
2001-11-17 18:55:36 +03:00
|
|
|
*)
|
2001-12-17 18:36:28 +03:00
|
|
|
# All others are UNIX/X11...
|
|
|
|
if test $have_pthread = yes; then
|
2001-12-07 01:16:49 +03:00
|
|
|
AC_DEFINE(HAVE_PTHREAD)
|
2001-12-15 00:02:24 +03:00
|
|
|
THREADS="threads"
|
2001-12-07 01:16:49 +03:00
|
|
|
fi
|
|
|
|
|
2001-11-17 18:55:36 +03:00
|
|
|
dnl Check for X11...
|
|
|
|
AC_PATH_XTRA
|
2001-04-25 17:34:43 +04:00
|
|
|
|
2001-11-17 18:55:36 +03:00
|
|
|
if test x$no_x = xyes; then
|
|
|
|
AC_MSG_ERROR(Configure could not find required X11 libraries, aborting.)
|
|
|
|
fi
|
2001-04-25 17:34:43 +04:00
|
|
|
|
2001-11-17 18:55:36 +03:00
|
|
|
if test "x$X_PRE_LIBS" != x; then
|
|
|
|
AC_MSG_WARN(Ignoring libraries \"$X_PRE_LIBS\" requested by configure.)
|
|
|
|
fi
|
2001-10-25 21:25:11 +04:00
|
|
|
|
2001-11-17 18:55:36 +03:00
|
|
|
LIBS="$LIBS -lXext -lX11 $X_EXTRA_LIBS"
|
|
|
|
CFLAGS="$CFLAGS$X_CFLAGS"
|
|
|
|
CXXFLAGS="$CXXFLAGS$X_CFLAGS"
|
|
|
|
LDFLAGS="$X_LIBS $LDFLAGS"
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-11-17 18:55:36 +03:00
|
|
|
if test "x$x_includes" != x; then
|
|
|
|
ac_cpp="$ac_cpp -I$x_includes"
|
2001-04-30 21:17:01 +04:00
|
|
|
fi
|
2001-08-02 22:08:36 +04:00
|
|
|
|
2001-11-17 18:55:36 +03:00
|
|
|
dnl Check for OpenGL unless disabled...
|
|
|
|
GLLIB=
|
|
|
|
|
|
|
|
if test x$enable_gl != xno; then
|
2002-01-06 16:40:32 +03:00
|
|
|
AC_SEARCH_LIBS(dlopen, dl)
|
2001-11-17 18:55:36 +03:00
|
|
|
AC_CHECK_HEADER(GL/gl.h,
|
|
|
|
AC_CHECK_LIB(GL, glXMakeCurrent, AC_DEFINE(HAVE_GL) GLLIB="-lGL", \
|
|
|
|
AC_CHECK_LIB(MesaGL,glXMakeCurrent, AC_DEFINE(HAVE_GL) GLLIB=" -lMesaGL",,\
|
|
|
|
-lm), \
|
|
|
|
-lm)
|
|
|
|
)
|
|
|
|
AC_CHECK_HEADER(GL/glu.h,
|
|
|
|
AC_DEFINE(HAVE_GL_GLU_H)
|
|
|
|
if test x$ac_cv_lib_GL_glXMakeCurrent = xyes; then
|
|
|
|
GLLIB="-lGLU $GLLIB"
|
|
|
|
fi
|
|
|
|
if test x$ac_cv_lib_MesaGL_glXMakeCurrent = xyes; then
|
|
|
|
GLLIB="-lMesaGLU $GLLIB"
|
|
|
|
fi
|
|
|
|
)
|
|
|
|
|
2001-11-30 00:12:15 +03:00
|
|
|
if test x$ac_cv_lib_GL_glXMakeCurrent = xno -a x$ac_cv_lib_MesaGL_glXMakeCurrent = xno; then
|
2001-11-17 18:55:36 +03:00
|
|
|
LINKFLTKGL=""
|
|
|
|
GLLIBNAME=""
|
|
|
|
GLDSONAME=""
|
|
|
|
GLDEMOS=""
|
|
|
|
fi
|
|
|
|
else
|
2001-08-02 22:08:36 +04:00
|
|
|
LINKFLTKGL=""
|
|
|
|
GLLIBNAME=""
|
|
|
|
GLDSONAME=""
|
2001-08-02 22:15:44 +04:00
|
|
|
GLDEMOS=""
|
2001-11-17 18:55:36 +03:00
|
|
|
fi
|
2001-04-25 17:34:43 +04:00
|
|
|
|
2001-11-17 18:55:36 +03:00
|
|
|
dnl Check for the Xdbe extension...
|
|
|
|
AC_CHECK_HEADER(X11/extensions/Xdbe.h, \
|
|
|
|
if test "$uname" != "SunOS"; then
|
|
|
|
AC_DEFINE(HAVE_XDBE)
|
|
|
|
fi)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-11-17 18:55:36 +03:00
|
|
|
dnl Check for overlay visuals...
|
|
|
|
AC_CACHE_CHECK("for X overlay visuals", ac_cv_have_overlay,
|
|
|
|
if xprop -root 2>/dev/null | grep -c "SERVER_OVERLAY_VISUALS" >/dev/null; then
|
|
|
|
ac_cv_have_overlay=yes
|
|
|
|
else
|
|
|
|
ac_cv_have_overlay=no
|
|
|
|
fi)
|
|
|
|
esac
|
2000-04-26 18:14:41 +04:00
|
|
|
|
2001-11-20 00:25:35 +03:00
|
|
|
AC_SUBST(HLINKS)
|
2001-11-17 18:55:36 +03:00
|
|
|
AC_SUBST(GLDEMOS)
|
|
|
|
AC_SUBST(GLLIB)
|
2001-12-06 05:20:36 +03:00
|
|
|
AC_SUBST(POSTBUILD)
|
2001-12-15 00:02:24 +03:00
|
|
|
AC_SUBST(THREADS)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-02-12 18:12:14 +03:00
|
|
|
dnl Figure out the appropriate formatted man page extension...
|
|
|
|
case "$uname" in
|
2001-11-27 20:44:08 +03:00
|
|
|
*BSD* | Darwin*)
|
2001-02-12 18:12:14 +03:00
|
|
|
# *BSD
|
|
|
|
CAT1EXT=0
|
|
|
|
CAT3EXT=0
|
|
|
|
;;
|
|
|
|
IRIX*)
|
|
|
|
# SGI IRIX
|
|
|
|
CAT1EXT=z
|
|
|
|
CAT3EXT=z
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# All others
|
|
|
|
CAT1EXT=1
|
|
|
|
CAT3EXT=3
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
AC_SUBST(CAT1EXT)
|
|
|
|
AC_SUBST(CAT3EXT)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-02-12 18:12:14 +03:00
|
|
|
dnl Fix "mandir" variable...
|
|
|
|
if test "$mandir" = "\${prefix}/man" -a "$prefix" = "/usr"; then
|
2001-11-28 01:03:29 +03:00
|
|
|
case "$uname" in
|
|
|
|
*BSD* | Darwin* | Linux*)
|
|
|
|
# *BSD, Darwin, and Linux
|
|
|
|
mandir="\${prefix}/share/man"
|
|
|
|
;;
|
|
|
|
IRIX*)
|
|
|
|
# SGI IRIX
|
|
|
|
mandir="\${prefix}/share/catman"
|
|
|
|
;;
|
|
|
|
esac
|
2001-02-12 18:12:14 +03:00
|
|
|
fi
|
|
|
|
|
2001-10-18 22:53:20 +04:00
|
|
|
dnl Fix "libdir" variable...
|
2001-10-19 00:47:10 +04:00
|
|
|
if test "$prefix" = NONE; then
|
2001-11-28 01:03:29 +03:00
|
|
|
prefix=/usr/local
|
2001-10-19 00:47:10 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$exec_prefix" = NONE; then
|
2001-12-30 07:45:34 +03:00
|
|
|
exec_prefix="\${prefix}"
|
2001-10-19 00:47:10 +04:00
|
|
|
fi
|
|
|
|
|
2001-12-30 07:45:34 +03:00
|
|
|
if test "$uname" = "IRIX" -a $uversion -ge 62 -a "$libdir" = "\${exec_prefix}/lib" -a "$exec_prefix" = "\${prefix}" -a "$prefix" = "/usr"; then
|
2001-11-28 01:03:29 +03:00
|
|
|
libdir="/usr/lib32"
|
2001-10-18 22:53:20 +04:00
|
|
|
fi
|
|
|
|
|
2001-02-12 18:12:14 +03:00
|
|
|
dnl Add warnings to compiler switches:
|
2000-04-27 04:17:54 +04:00
|
|
|
dnl do this last so messing with switches does not break tests
|
2001-02-12 18:12:14 +03:00
|
|
|
MAKEDEPEND="\$(CXX) -M"
|
|
|
|
|
1998-11-05 19:04:53 +03:00
|
|
|
if test -n "$GXX"; then
|
2001-11-01 17:54:06 +03:00
|
|
|
# Starting with GCC 3.0, you must link C++ programs against either
|
|
|
|
# libstdc++ (shared by default), or libsupc++ (always static). If
|
|
|
|
# you care about binary portability between Linux distributions,
|
|
|
|
# you need to either 1) build your own GCC with static C++ libraries
|
|
|
|
# or 2) link using gcc and libsupc++. We choose the latter since
|
|
|
|
# FLTK doesn't (currently) use any of the stdc++ library.
|
2001-10-23 15:42:23 +04:00
|
|
|
#
|
|
|
|
# Also, GCC 3.0.x still has problems compiling some code. You may
|
|
|
|
# or may not have success with it. USE 3.0.x WITH EXTREME CAUTION!
|
|
|
|
#
|
2001-11-01 17:54:06 +03:00
|
|
|
# Previous versions of GCC do not have the reliance on the stdc++
|
|
|
|
# or g++ libraries, so the extra supc++ library is not needed.
|
2001-10-23 15:42:23 +04:00
|
|
|
|
|
|
|
case "`$CXX --version`" in
|
|
|
|
3*)
|
2001-11-01 17:54:06 +03:00
|
|
|
AC_MSG_WARN(GCC 3.0.x is known to produce incorrect code - use with caution!)
|
|
|
|
LIBS="$LIBS -lsupc++"
|
2001-10-23 15:42:23 +04:00
|
|
|
;;
|
2001-11-01 17:54:06 +03:00
|
|
|
3.1*)
|
|
|
|
LIBS="$LIBS -lsupc++"
|
2001-10-23 15:42:23 +04:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2001-11-01 17:54:06 +03:00
|
|
|
CXX="$CC"
|
|
|
|
|
1998-11-05 19:04:53 +03:00
|
|
|
CFLAGS="-Wall $CFLAGS"
|
2000-10-22 00:01:56 +04:00
|
|
|
CXXFLAGS="-Wall $CXXFLAGS"
|
1999-02-01 22:40:25 +03:00
|
|
|
if test -z "$DEBUGFLAG"; then
|
2001-04-25 17:34:43 +04:00
|
|
|
#
|
|
|
|
# Note: Can't use -fomit-frame-pointer - prevents tools like
|
2000-10-22 00:01:56 +04:00
|
|
|
# libsafe from working!
|
2001-04-25 17:34:43 +04:00
|
|
|
#
|
|
|
|
# Don't use -fforce-mem, -fforce-addr, or -fcaller-saves.
|
|
|
|
# They all seem to make either no difference or enlarge
|
|
|
|
# the code by a few hundred bytes.
|
|
|
|
#
|
2001-11-28 01:03:29 +03:00
|
|
|
# "-O2" seems to be the best compromise between speed and
|
|
|
|
# code size. "-O3" and higher seem to make no effective
|
|
|
|
# different in the speed of the code, but does bloat the
|
|
|
|
# library 10+%.
|
|
|
|
#
|
2000-10-22 00:01:56 +04:00
|
|
|
CFLAGS="-O2 $CFLAGS"
|
|
|
|
CXXFLAGS="-O2 $CXXFLAGS"
|
1999-02-01 22:40:25 +03:00
|
|
|
fi
|
1999-03-04 17:48:08 +03:00
|
|
|
if test $PICFLAG = 1; then
|
|
|
|
CFLAGS="-fPIC $CFLAGS"
|
|
|
|
CXXFLAGS="-fPIC $CXXFLAGS"
|
|
|
|
fi
|
2000-04-26 16:55:29 +04:00
|
|
|
|
2000-04-26 02:17:00 +04:00
|
|
|
# See if GCC supports -fno-exceptions...
|
2001-11-01 19:43:38 +03:00
|
|
|
AC_MSG_CHECKING(if GCC supports -fno-exceptions)
|
2000-04-26 02:17:00 +04:00
|
|
|
OLDCFLAGS="$CFLAGS"
|
|
|
|
CFLAGS="$CFLAGS -fno-exceptions"
|
2000-04-26 11:59:53 +04:00
|
|
|
AC_TRY_COMPILE(,,
|
2001-12-19 22:23:32 +03:00
|
|
|
CXXFLAGS="$CXXFLAGS -fno-exceptions"
|
2001-11-01 17:54:06 +03:00
|
|
|
AC_MSG_RESULT(yes),
|
2001-12-19 22:23:32 +03:00
|
|
|
CFLAGS="$OLDCFLAGS"
|
2001-04-25 17:34:43 +04:00
|
|
|
AC_MSG_RESULT(no))
|
2001-11-01 17:54:06 +03:00
|
|
|
CFLAGS="$OLDCFLAGS"
|
2000-04-26 16:55:29 +04:00
|
|
|
|
|
|
|
# See if we are running Solaris; if so, try the -fpermissive option...
|
2001-11-01 17:54:06 +03:00
|
|
|
if test "$uname" = SunOS; then
|
2001-11-01 19:43:38 +03:00
|
|
|
AC_MSG_CHECKING(if GCC supports -fpermissive)
|
2000-04-26 16:55:29 +04:00
|
|
|
|
|
|
|
OLDCFLAGS="$CFLAGS"
|
|
|
|
CFLAGS="$CFLAGS -fpermissive"
|
|
|
|
AC_TRY_COMPILE(,,
|
2001-12-19 22:23:32 +03:00
|
|
|
CXXFLAGS="$CXXFLAGS -fpermissive"
|
2001-04-25 17:34:43 +04:00
|
|
|
AC_MSG_RESULT(yes),
|
2001-12-19 22:23:32 +03:00
|
|
|
CFLAGS="$OLDCFLAGS"
|
2001-04-25 17:34:43 +04:00
|
|
|
AC_MSG_RESULT(no))
|
2000-04-26 16:55:29 +04:00
|
|
|
fi
|
1998-11-05 19:04:53 +03:00
|
|
|
else
|
1999-02-01 22:40:25 +03:00
|
|
|
case `(uname) 2>/dev/null` in
|
|
|
|
IRIX*)
|
|
|
|
# Running some flavor of IRIX; see which version and
|
|
|
|
# set things up according...
|
1999-02-22 23:53:35 +03:00
|
|
|
if test "$uversion" -ge 62; then
|
1999-02-01 22:40:25 +03:00
|
|
|
# We are running IRIX 6.2 or higher; uncomment the following
|
|
|
|
# lines if you don't have IDO 7.2 or higher:
|
|
|
|
#
|
2001-04-25 17:34:43 +04:00
|
|
|
# CXX="CC -n32 -mips3"
|
|
|
|
# CC="cc -n32 -mips3"
|
|
|
|
# LD="ld -n32 -mips3"
|
1999-02-01 22:40:25 +03:00
|
|
|
# MAKEDEPEND="CC -M"
|
|
|
|
|
2001-04-25 17:34:43 +04:00
|
|
|
if test "x`grep abi=n32 /etc/compiler.defaults`" = x; then
|
|
|
|
AC_MSG_WARN(FOR BEST RESULTS BEFORE COMPILING: setenv SGI_ABI \"-n32 -mips3\")
|
|
|
|
fi
|
|
|
|
|
1999-02-01 22:40:25 +03:00
|
|
|
CFLAGS="-fullwarn $CFLAGS"
|
2000-10-22 00:01:56 +04:00
|
|
|
CXXFLAGS="-fullwarn $CXXFLAGS"
|
1999-02-01 22:40:25 +03:00
|
|
|
else
|
|
|
|
CXXFLAGS="+w +pp $CXXFLAGS"
|
1999-02-18 16:42:08 +03:00
|
|
|
fi
|
|
|
|
if test -z "$DEBUGFLAG"; then
|
|
|
|
CFLAGS="-O2 $CFLAGS"
|
|
|
|
CXXFLAGS="-O2 $CXXFLAGS"
|
1999-02-01 22:40:25 +03:00
|
|
|
fi
|
|
|
|
;;
|
1999-02-22 23:53:35 +03:00
|
|
|
HP-UX*)
|
1999-02-01 22:40:25 +03:00
|
|
|
# Running HP-UX; these options should work for the HP compilers.
|
|
|
|
if test -z "$DEBUGFLAG"; then
|
|
|
|
CFLAGS="+O2 $CFLAGS"
|
1999-02-22 23:53:35 +03:00
|
|
|
CXXFLAGS="+O2 +W336,501,736,740,749,829 $CXXFLAGS"
|
1999-02-01 22:40:25 +03:00
|
|
|
fi
|
2001-08-08 16:47:59 +04:00
|
|
|
CFLAGS="+DAportable $CFLAGS"
|
|
|
|
CXXFLAGS="+DAportable $CXXFLAGS"
|
1999-02-01 22:40:25 +03:00
|
|
|
;;
|
1999-05-19 23:07:15 +04:00
|
|
|
SunOS*)
|
|
|
|
# Solaris
|
|
|
|
if test -z "$DEBUGFLAG"; then
|
2000-11-10 00:53:00 +03:00
|
|
|
CFLAGS="-xO3"
|
|
|
|
CXXFLAGS="-xO3"
|
1999-05-19 23:07:15 +04:00
|
|
|
fi
|
|
|
|
if test $PICFLAG = 1; then
|
|
|
|
CFLAGS="-KPIC $CFLAGS"
|
|
|
|
CXXFLAGS="-PIC $CXXFLAGS"
|
|
|
|
fi
|
|
|
|
;;
|
2001-04-13 23:13:14 +04:00
|
|
|
AIX*)
|
|
|
|
if test -z "$DEBUGFLAG"; then
|
|
|
|
CFLAGS="-O2 $CFLAGS"
|
|
|
|
CXXFLAGS="-O2 $CXXFLAGS"
|
|
|
|
fi
|
2001-11-22 16:56:10 +03:00
|
|
|
AC_MSG_WARN(The AIX C and C++ compilers are known not to correctly compile the FLTK library.)
|
2001-04-13 23:13:14 +04:00
|
|
|
;;
|
1999-02-01 22:40:25 +03:00
|
|
|
*)
|
|
|
|
# Running some other operating system; inform the user they
|
2000-06-06 01:21:24 +04:00
|
|
|
# should contribute the necessary options to fltk-bugs@fltk.org...
|
2001-11-22 16:56:10 +03:00
|
|
|
AC_MSG_WARN(Building FLTK with default compiler optimizations)
|
|
|
|
AC_MSG_WARN(Contact fltk-bugs@fltk.org with uname and compiler options.)
|
1999-02-01 22:40:25 +03:00
|
|
|
;;
|
|
|
|
esac
|
1998-11-05 19:04:53 +03:00
|
|
|
fi
|
|
|
|
|
1999-02-01 22:40:25 +03:00
|
|
|
CFLAGS="$DEBUGFLAG $CFLAGS"
|
|
|
|
CXXFLAGS="$DEBUGFLAG $CXXFLAGS"
|
1999-01-31 10:43:16 +03:00
|
|
|
|
1999-03-09 22:24:42 +03:00
|
|
|
AC_SUBST(DSOCOMMAND)
|
2001-08-02 22:08:36 +04:00
|
|
|
AC_SUBST(DSONAME)
|
|
|
|
AC_SUBST(GLDSONAME)
|
|
|
|
AC_SUBST(GLLIBNAME)
|
1998-10-20 20:41:24 +04:00
|
|
|
AC_SUBST(LIBCOMMAND)
|
2001-08-02 22:08:36 +04:00
|
|
|
AC_SUBST(LIBNAME)
|
|
|
|
AC_SUBST(LINKFLTKGL)
|
|
|
|
AC_SUBST(LINKFLTK)
|
1998-10-06 22:21:25 +04:00
|
|
|
AC_SUBST(MAKEDEPEND)
|
2001-08-02 22:08:36 +04:00
|
|
|
|
2001-08-11 20:09:26 +04:00
|
|
|
if test x$prefix = xNONE; then
|
2001-11-28 01:03:29 +03:00
|
|
|
AC_DEFINE_UNQUOTED(FLTK_DOCDIR, "/usr/local/share/doc/fltk")
|
2001-08-11 20:09:26 +04:00
|
|
|
else
|
2001-11-28 01:03:29 +03:00
|
|
|
AC_DEFINE_UNQUOTED(FLTK_DOCDIR, "$prefix/share/doc/fltk")
|
2001-08-11 20:09:26 +04:00
|
|
|
fi
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
AC_CONFIG_HEADER(config.h:configh.in)
|
2001-12-03 21:57:45 +03:00
|
|
|
AC_OUTPUT(makeinclude fltk.list fltk-config FL/Makefile)
|
2001-09-29 19:57:32 +04:00
|
|
|
|
|
|
|
chmod +x fltk-config
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2000-04-27 04:17:54 +04:00
|
|
|
dnl
|
2002-01-06 16:40:32 +03:00
|
|
|
dnl End of "$Id: configure.in,v 1.33.2.31.2.46 2002/01/06 13:40:27 easysw Exp $".
|
2000-04-27 04:17:54 +04:00
|
|
|
dnl
|