mirror of
https://github.com/fltk/fltk.git
synced 2026-06-05 08:06:35 +08:00
Add --with-links configure option.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3103 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
CHANGES IN FLTK 1.1.5rc1
|
CHANGES IN FLTK 1.1.5rc1
|
||||||
|
|
||||||
|
- Added "--with-links" configure option to control
|
||||||
|
whether symlinks are created for the FLTK header files
|
||||||
|
(STR #164)
|
||||||
- Added new hoverdelay() to Fl_Tooltip to control how
|
- Added new hoverdelay() to Fl_Tooltip to control how
|
||||||
quickly recent tooltips appear (STR #126)
|
quickly recent tooltips appear (STR #126)
|
||||||
- FLUID now sets the size range when a window is shown.
|
- FLUID now sets the size range when a window is shown.
|
||||||
|
|||||||
+15
-4
@@ -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.105 2003/09/09 15:15:16 easysw Exp $"
|
dnl "$Id: configure.in,v 1.33.2.31.2.106 2003/09/14 14:28:22 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
|
||||||
@@ -417,6 +417,8 @@ HLINKS=
|
|||||||
POSTBUILD=:
|
POSTBUILD=:
|
||||||
THREADS=
|
THREADS=
|
||||||
|
|
||||||
|
AC_ARG_WITH(links, [ --with-links make header links for common misspellings])
|
||||||
|
|
||||||
case $uname in
|
case $uname in
|
||||||
CYGWIN* | MINGW*)
|
CYGWIN* | MINGW*)
|
||||||
dnl Cygwin environment...
|
dnl Cygwin environment...
|
||||||
@@ -446,7 +448,9 @@ case $uname in
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Don't make symlinks since Windows is not case sensitive.
|
# Don't make symlinks since Windows is not case sensitive.
|
||||||
HLINKS="#"
|
if test "x$with_links" != xyes; then
|
||||||
|
HLINKS="#"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
Darwin*)
|
Darwin*)
|
||||||
@@ -470,7 +474,9 @@ case $uname in
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Don't make symlinks because HFS+ is not case sensitive...
|
# Don't make symlinks because HFS+ is not case sensitive...
|
||||||
HLINKS="#"
|
if test "x$with_links" != xyes; then
|
||||||
|
HLINKS="#"
|
||||||
|
fi
|
||||||
|
|
||||||
# Add a postbuild step after linking applications
|
# Add a postbuild step after linking applications
|
||||||
POSTBUILD="/Developer/Tools/Rez -t APPL -o"
|
POSTBUILD="/Developer/Tools/Rez -t APPL -o"
|
||||||
@@ -573,6 +579,11 @@ case $uname in
|
|||||||
if test x$ac_cv_have_overlay = xyes; then
|
if test x$ac_cv_have_overlay = xyes; then
|
||||||
AC_DEFINE(HAVE_OVERLAY)
|
AC_DEFINE(HAVE_OVERLAY)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Make symlinks since UNIX/Linux is case sensitive.
|
||||||
|
if test "x$with_links" = xno; then
|
||||||
|
HLINKS="#"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@@ -852,5 +863,5 @@ dnl Make sure the fltk-config script is executable...
|
|||||||
chmod +x fltk-config
|
chmod +x fltk-config
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
dnl End of "$Id: configure.in,v 1.33.2.31.2.105 2003/09/09 15:15:16 easysw Exp $".
|
dnl End of "$Id: configure.in,v 1.33.2.31.2.106 2003/09/14 14:28:22 easysw Exp $".
|
||||||
dnl
|
dnl
|
||||||
|
|||||||
Reference in New Issue
Block a user