| 1234567891011121314151617181920 |
- Index: src/template/freebsd
- --- src/template/freebsd.orig 2006-03-11 05:38:41 +0100
- +++ src/template/freebsd 2006-11-20 20:54:27 +0100
- @@ -1,5 +1,5 @@
- # $PostgreSQL: pgsql/src/template/freebsd,v 1.35 2006/03/11 04:38:41 momjian Exp $
-
- case $host_cpu in
- - alpha*) CFLAGS="-O";; # alpha has problems with -O2
- + alpha*) CFLAGS=`echo "x$CFLAGS" | sed -e 's;^x;;' -e 's;-O2;-O;'`;; # alpha has problems with -O2
- esac
- Index: src/template/linux
- --- src/template/linux.orig 2006-03-11 05:38:41 +0100
- +++ src/template/linux 2006-11-20 20:54:27 +0100
- @@ -1,4 +1,4 @@
- # $PostgreSQL: pgsql/src/template/linux,v 1.28 2006/03/11 04:38:41 momjian Exp $
-
- # Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise
- -CPPFLAGS="-D_GNU_SOURCE"
- +CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
|