summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-07-08 03:57:39 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-07-08 03:57:39 +0000
commitd2742356a442132cfd07955c1a96c91da143aa7c (patch)
tree6a931c83cc03498848c3fee89ee3a3ed303db2ac
parentb37d8bf8a67f1663aaa397da5f0cd225b61579a1 (diff)
downloadgdk-pixbuf-d2742356a442132cfd07955c1a96c91da143aa7c.tar.gz
Add -DHPPEX -DSHMLINK to CFLAGS for HP-UX. (#162979, Paul Cornett)
2005-07-07 Matthias Clasen <mclasen@redhat.com> * configure.in: Add -DHPPEX -DSHMLINK to CFLAGS for HP-UX. (#162979, Paul Cornett)
-rw-r--r--ChangeLog3
-rw-r--r--ChangeLog.pre-2-103
-rw-r--r--ChangeLog.pre-2-83
-rw-r--r--configure.in14
4 files changed, 23 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5cb77bc73..f3d9a675d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2005-07-07 Matthias Clasen <mclasen@redhat.com>
+ * configure.in: Add -DHPPEX -DSHMLINK to CFLAGS for HP-UX.
+ (#162979, Paul Cornett)
+
* gtk/gtkhscale.c (gtk_hscale_new_with_range):
(gtk_vscale_new_with_range): Add some additional docs on
precision here too. (#309238, Steve Chaplin)
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 5cb77bc73..f3d9a675d 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,5 +1,8 @@
2005-07-07 Matthias Clasen <mclasen@redhat.com>
+ * configure.in: Add -DHPPEX -DSHMLINK to CFLAGS for HP-UX.
+ (#162979, Paul Cornett)
+
* gtk/gtkhscale.c (gtk_hscale_new_with_range):
(gtk_vscale_new_with_range): Add some additional docs on
precision here too. (#309238, Steve Chaplin)
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 5cb77bc73..f3d9a675d 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,5 +1,8 @@
2005-07-07 Matthias Clasen <mclasen@redhat.com>
+ * configure.in: Add -DHPPEX -DSHMLINK to CFLAGS for HP-UX.
+ (#162979, Paul Cornett)
+
* gtk/gtkhscale.c (gtk_hscale_new_with_range):
(gtk_vscale_new_with_range): Add some additional docs on
precision here too. (#309238, Steve Chaplin)
diff --git a/configure.in b/configure.in
index 3e7fd3847..e1e8d3dab 100644
--- a/configure.in
+++ b/configure.in
@@ -471,6 +471,20 @@ case $host in
;;
esac
+#
+# see bug 162979
+#
+AC_MSG_CHECKING(for HP-UX)
+case $host_os in
+ hpux9* | hpux10* | hpux11*)
+ AC_MSG_RESULT(yes)
+ CFLAGS="$CFLAGS -DHPPEX -DSHMLINK"
+ ;;
+ *)
+ AC_MSG_RESULT(no)
+ ;;
+esac
+
dnl NeXTStep cc seems to need this
AC_MSG_CHECKING([for extra flags for POSIX compliance])
AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],