]> granicus.if.org Git - postgresql/blob - src/template/hpux
Fix things so that updatable views work with partitioned tables.
[postgresql] / src / template / hpux
1 # src/template/hpux
2
3 # Need this for access to many modern library features
4 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
5
6 # HP's compiler likes the spelling +O2 not -O2, so adjust default CFLAGS
7 if test "$GCC" != yes ; then
8   CFLAGS="+O2"
9 fi
10
11 # Pick right test-and-set (TAS) code.  We need out-of-line assembler
12 # when not using gcc.
13 case $host in
14   hppa*-*-hpux*)
15         if test "$GCC" != yes ; then
16                 need_tas=yes
17                 tas_file=hpux_hppa.s
18         fi
19     ;;
20 esac