summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMarkus Schwarzenberg <schwarzenberg@users.sourceforge.net>2007-03-01 09:43:25 +0000
committerschwarzenberg <schwarzenberg@users.sourceforge.net>2007-03-01 09:43:25 +0000
commitad8869da712554d4ba090e1998f22d6c7afca4b2 (patch)
tree9796bfbc1f2c072acf41f41bdc3238022d2db7ab /configure.ac
parentr14651@tres: ted | 2007-02-28 23:23:41 -0800 (diff)
downloadinkscape-ad8869da712554d4ba090e1998f22d6c7afca4b2.tar.gz
inkscape-ad8869da712554d4ba090e1998f22d6c7afca4b2.zip
commited Solaris 2.8 / gcc-3.2.3 fixes
(bzr r2485)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac14
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index d1d8eb114..310efa16f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -207,6 +207,20 @@ esac
AC_MSG_RESULT([$platform_win32])
AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes")
+AC_MSG_CHECKING([for Solaris 2.8 platform])
+case "$host" in
+ *-solaris2.8)
+ platform_solaris_2_8=yes
+ CFLAGS="$CFLAGS -DSOLARIS_2_8"
+ CXXFLAGS="$CXXFLAGS -DSOLARIS_2_8"
+ ;;
+ *)
+ platform_solaris_2_8=no
+ ;;
+esac
+AC_MSG_RESULT([$platform_solaris_2_8])
+AM_CONDITIONAL(PLATFORM_SOLARIS_2_8, test "$platform_solaris_2_8" = "yes")
+
dnl ******************************
dnl Xft checking
dnl ******************************