diff options
| author | Tom Lane | 2003-08-01 19:12:52 +0000 |
|---|---|---|
| committer | Tom Lane | 2003-08-01 19:12:52 +0000 |
| commit | 13ac54d1ca89d8a50b996cd26fefb9d836461a74 (patch) | |
| tree | b22f555314a2025d8c493958c14cd095df546615 /configure.in | |
| parent | 75619cff569ed6fe3363e0d2b232ddc80814c3d3 (diff) | |
Since HPUX now exists for Itanium, we should decouple the assumption
that OS=hpux is the same as CPU=hppa. First steps at doing this.
With these patches, we still work on hppa with either gcc or HP's cc.
We might work on hpux/itanium with gcc, but I can't test it. Definitely
will not work on hpux/itanium with non-gcc compiler, for lack of spinlock
code.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index a9093734884..fa40b037f3e 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $Header: /cvsroot/pgsql/configure.in,v 1.271 2003/08/01 03:10:03 momjian Exp $ +dnl $Header: /cvsroot/pgsql/configure.in,v 1.272 2003/08/01 19:12:52 tgl Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -108,7 +108,7 @@ AC_SUBST(PORTNAME) # assembler code in src/include/storage/s_lock.h, so we just use # a dummy file here. case $host in - *-*-hpux*) need_tas=yes; tas_file=hpux.s ;; + hppa*-*-hpux*) need_tas=yes; tas_file=hpux_hppa.s ;; sparc-*-solaris*) need_tas=yes; tas_file=solaris_sparc.s ;; i?86-*-solaris*) need_tas=yes; tas_file=solaris_i386.s ;; *) need_tas=no; tas_file=dummy.s ;; |
