]> granicus.if.org Git - postgresql/blob - src/template/hpux
Move USE_WIDE_UPPER_LOWER define to c.h, and remove TS_USE_WIDE and use
[postgresql] / src / template / hpux
1 # $PostgreSQL: pgsql/src/template/hpux,v 1.16 2006/12/12 19:43:19 petere Exp $
2
3 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
4
5 if test "$GCC" != yes ; then
6   CC="$CC -Ae"
7   CFLAGS="+O2"
8 fi
9
10 # Pick right test-and-set (TAS) code.  We need out-of-line assembler
11 # when not using gcc.
12 case $host in
13   hppa*-*-hpux*)
14         if test "$GCC" != yes ; then
15                 need_tas=yes
16                 tas_file=hpux_hppa.s
17         fi
18     ;;
19 esac