diff options
| author | Bruce Momjian | 1998-09-13 04:00:44 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-09-13 04:00:44 +0000 |
| commit | af8e2760ba4ad2369eee23d920a89a8ea8b8fcc4 (patch) | |
| tree | bc70b866a90b0ad3b7ec781a53271d5f5afb8068 /src/template | |
| parent | bcb51fc91684d0e4bbf8245660682ab3b9a7dfca (diff) | |
Here are some additional patches needed to get the UnixWare 7 C++
compiler to
attempt to compile libpq++. The patches address the following problems:
1. In my first pass at changing the libpq++ makefile, I forgot to
include the
PORTNAME in the Makefile.in file.
2. The UnixWare 7 C++ compiler did not like the '-K alloca' option in
CXXFLAGS.
Billy G. Allie
Diffstat (limited to 'src/template')
| -rw-r--r-- | src/template/univel | 2 | ||||
| -rw-r--r-- | src/template/unixware | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/template/univel b/src/template/univel index 21b85926638..dcdfae8af4a 100644 --- a/src/template/univel +++ b/src/template/univel @@ -1,5 +1,5 @@ AROPT:crs -CFLAGS:-Xa -v -O -K i486,host,inline,loop_unroll -Dsvr4 +CFLAGS:-v -O -K i486,host,inline,loop_unroll -Dsvr4 SHARED_LIB:-K PIC SRCH_INC: SRCH_LIB: diff --git a/src/template/unixware b/src/template/unixware index a174807cb37..0dd81b5c2d7 100644 --- a/src/template/unixware +++ b/src/template/unixware @@ -1,5 +1,5 @@ AROPT:crs -CFLAGS:-Xa -v -O -K i486,host,inline,loop_unroll,alloca -Dsvr4 +CFLAGS:-O -K i486,host,inline,loop_unroll,alloca -Dsvr4 SHARED_LIB:-K PIC SRCH_INC:/opt/include SRCH_LIB:/opt/lib |
