From fc3999a24ed8c82c5bca139e7fd63f9c0a6b9058 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 4 Dec 2001 19:57:45 +0000 Subject: [PATCH] Don't install header symlinks under MacOS either... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1808 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- configure.in | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index b65ab530c..71c99cc1d 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.34 2001/12/03 18:57:45 easysw Exp $" +dnl "$Id: configure.in,v 1.33.2.31.2.35 2001/12/04 19:57:45 easysw Exp $" dnl dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl @@ -264,7 +264,7 @@ case $uname in LIBS="$LIBS -mwindows -lwsock32" CFLAGS="$CFLAGS -mwindows -DWIN32" CXXFLAGS="$CXXFLAGS -mwindows -DWIN32" - HLINKS="#" + if test x$enable_gl != xno; then AC_CHECK_HEADER(GL/gl.h, AC_DEFINE(HAVE_GL) @@ -278,10 +278,14 @@ case $uname in GLDSONAME="" GLDEMOS="" fi + + # Don't make symlinks since Windows is not case sensitive. + HLINKS="#" ;; Darwin*) # MacOS X uses Carbon for graphics... LIBS="$LIBS -framework Carbon -framework ApplicationServices" + if test x$enable_gl != xno; then AC_DEFINE(HAVE_GL) AC_DEFINE(HAVE_GL_GLU_H) @@ -292,6 +296,8 @@ case $uname in GLDSONAME="" GLDEMOS="" fi + # Don't make symlinks because HFS+ is not case sensitive... + HLINKS="#" ;; *) dnl Check for X11... @@ -580,5 +586,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.34 2001/12/03 18:57:45 easysw Exp $". +dnl End of "$Id: configure.in,v 1.33.2.31.2.35 2001/12/04 19:57:45 easysw Exp $". dnl