diff options
| author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-13 17:11:04 +0000 |
|---|---|---|
| committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-13 17:11:04 +0000 |
| commit | 3a6d39feab941dd255cdfc7c3d8fa82d7897dce7 (patch) | |
| tree | a294fcab4e751da87a6687e096fbc5437b7c441c | |
| parent | a0d0cc4177f589b74098d17051742404352b9471 (diff) | |
| download | ppe42-gcc-3a6d39feab941dd255cdfc7c3d8fa82d7897dce7.tar.gz ppe42-gcc-3a6d39feab941dd255cdfc7c3d8fa82d7897dce7.zip | |
* configure.in: Do not build byacc for hppa64. Provide paths to the
X11 libraries for hppa64.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36389 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 973748f1a14..16baf9bcaa8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com) + + * configure.in: Do not build byacc for hppa64. Provide paths to the + X11 libraries for hppa64. + 2000-09-08 Stephane Carrez <Stephane.Carrez@worldnet.fr> * MAINTAINERS: Add myself as 68hc11 port maintainer. diff --git a/configure.in b/configure.in index 5f9f1c4273a..a474278b55c 100644 --- a/configure.in +++ b/configure.in @@ -284,6 +284,14 @@ if false && [ "${host}" = "${target}" ] && [ x${enable_shared} = x ]; then esac fi +# hpux11 in 64bit mode has libraries in a weird place. Arrange to find +# them automatically. +case "${host}" in + hppa*64*-*-hpux11*) + withoptions="$withoptions -x-libraries=/usr/lib/pa20_64 -x-includes=/usr/X11R6/include" + ;; +esac + case "${enable_shared}" in yes) shared=yes ;; no) shared=no ;; @@ -543,6 +551,9 @@ esac noconfigdirs="" case "${host}" in + hppa*64*-*-*) + noconfigdirs="$noconfigdirs byacc" + ;; i[3456]86-*-vsta) noconfigdirs="tcl expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff guile perl apache inet itcl tix db snavigator gnuserv gettext" ;; |

