summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2008-02-26 15:26:08 +0000
committerMatthias Melcher <fltk@matthiasm.com>2008-02-26 15:26:08 +0000
commit9c538a4b2e4b349785b77e774a1011380d8b46cb (patch)
tree76c02ee0161c3aa07e95b391b24f7186dd4e0186 /configure.in
parent68a20dbc3205eada2a582859d3cb504a5c39f95c (diff)
STR 1883: Attempt to fix installation of binaries in .app bundle on platforms other than OS X. Must be tested with Cygwin and on Linux!
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@6051 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 9d79a1c67..53918a8ac 100644
--- a/configure.in
+++ b/configure.in
@@ -600,6 +600,7 @@ AC_SUBST(PTHREAD_FLAGS)
dnl Define OS-specific stuff...
HLINKS=
POSTBUILD=:
+OSX_ONLY=:
THREADS=
AC_ARG_WITH(links, [ --with-links make header links for common misspellings])
@@ -680,6 +681,9 @@ case $uname in
# Add a postbuild step after linking applications
POSTBUILD="/Developer/Tools/Rez -t APPL -o"
+ # Some steps are only done for OS X package management
+ OSX_ONLY=
+
# Install/Uninstall FLUID application
INSTALL_DESKTOP="install-osx"
UNINSTALL_DESKTOP="uninstall-osx"
@@ -815,6 +819,7 @@ AC_SUBST(GLDEMOS)
AC_SUBST(GLLIB)
AC_SUBST(HLINKS)
AC_SUBST(POSTBUILD)
+AC_SUBST(OSX_ONLY)
AC_SUBST(THREADS)
AC_SUBST(INSTALL_DESKTOP)