diff options
| author | Fabien Costantini <fabien@onepost.net> | 2008-10-13 23:34:07 +0000 |
|---|---|---|
| committer | Fabien Costantini <fabien@onepost.net> | 2008-10-13 23:34:07 +0000 |
| commit | 097c3cd91e1a9bad342fe03b0e5a7be57bf55786 (patch) | |
| tree | 39fcd18c0acba7c2e66578af52d354a3f80043cb /configure.in | |
| parent | 86fee3f0d1c9cc03ee05af11f2cc6ee2f0e501b4 (diff) | |
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
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 6b63bc6f6..8a947eb65 100644 --- a/configure.in +++ b/configure.in @@ -257,10 +257,13 @@ AC_ARG_WITH(optim, [ --with-optim="flags" use custom optimization flags]) AC_ARG_WITH(archflags, [ --with-archflags="flags" use custom architecture flags], ARCHFLAGS="$withval") - +case $uname in + Darwin*) # QD is not supported anymore since 1.3 -AC_DEFINE(USE_QUARTZ, 1) -AC_DEFINE(__APPLE_QUARTZ__) + AC_DEFINE(USE_QUARTZ, 1) + AC_DEFINE(__APPLE_QUARTZ__) + ;; +esac dnl Find commands... AC_PROG_CC |
