diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-26 12:39:32 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-26 12:39:32 +0000 |
| commit | 14b93c034b84f798791d23b9cff171c5c0de3ead (patch) | |
| tree | fc71b005a9ce262a7998d9e599f316d46f048bb2 | |
| parent | da9edc35a5c095613a85a35ea0622e4ca244fc6b (diff) | |
Add +z option with HP-UX compilers when compiling shared libraries.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2112 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | configure.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 492708a29..8d9168b83 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl -*- sh -*- dnl the "configure" script is made from this by running GNU "autoconf" dnl -dnl "$Id: configure.in,v 1.33.2.31.2.62 2002/04/24 18:29:05 easysw Exp $" +dnl "$Id: configure.in,v 1.33.2.31.2.63 2002/04/26 12:39:32 easysw Exp $" dnl dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl @@ -671,6 +671,10 @@ else OPTIM="$OPTIM +DAportable" fi + if test $PICFLAG = 1; then + OPTIM="+z $OPTIM" + fi + OPTIM="$OPTIM +W336,501,736,740,749,829" ;; SunOS*) @@ -724,5 +728,5 @@ dnl Make sure the fltk-config script is executable... chmod +x fltk-config dnl -dnl End of "$Id: configure.in,v 1.33.2.31.2.62 2002/04/24 18:29:05 easysw Exp $". +dnl End of "$Id: configure.in,v 1.33.2.31.2.63 2002/04/26 12:39:32 easysw Exp $". dnl |
