Skip to content

Commit

Permalink
Don't install header symlinks under MacOS either...
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1808 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
michaelrsweet committed Dec 4, 2001
1 parent ce08c01 commit fc3999a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions 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
Expand Down Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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...
Expand Down Expand Up @@ -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

0 comments on commit fc3999a

Please sign in to comment.