mirror of https://github.com/fltk/fltk
fixed missing case darwin in configure.in after qd removal.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6425 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
86fee3f0d1
commit
097c3cd91e
|
@ -257,10 +257,13 @@ AC_ARG_WITH(optim, [ --with-optim="flags" use custom optimization flags])
|
||||||
AC_ARG_WITH(archflags, [ --with-archflags="flags"
|
AC_ARG_WITH(archflags, [ --with-archflags="flags"
|
||||||
use custom architecture flags],
|
use custom architecture flags],
|
||||||
ARCHFLAGS="$withval")
|
ARCHFLAGS="$withval")
|
||||||
|
case $uname in
|
||||||
|
Darwin*)
|
||||||
# QD is not supported anymore since 1.3
|
# QD is not supported anymore since 1.3
|
||||||
AC_DEFINE(USE_QUARTZ, 1)
|
AC_DEFINE(USE_QUARTZ, 1)
|
||||||
AC_DEFINE(__APPLE_QUARTZ__)
|
AC_DEFINE(__APPLE_QUARTZ__)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
dnl Find commands...
|
dnl Find commands...
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
|
|
Loading…
Reference in New Issue