diff options
| author | Marc G. Fournier | 1998-01-17 23:33:58 +0000 |
|---|---|---|
| committer | Marc G. Fournier | 1998-01-17 23:33:58 +0000 |
| commit | 36c1c94bca30a730bec1bb9f5163ccfbb7565fed (patch) | |
| tree | 98c64f5e4985dc203b9ca30cfa062af8a485ce8d /src/makefiles | |
| parent | 98c7cb11dea7f0f91662ae6d4ec1fd13b8f9e553 (diff) | |
From: "Billy G. Allie" <Bill.Allie@mug.org>
The attached patches will allow postgreSQL to compile successfully on SCO
UNIXWARE 2.1.x. The patches fix the following problems:
1. Configure did not properly recognize the UNIXWARE system as needing the
univel port. It used the sys4 port.
2. Configure did not properly process the CC flag in the template file.
3. There was no working test and set locking implementation for the native
UNIXWARE compiler.
4. The test and set locking used for Intel X86 that was selected by defining
NEED_I386_TAS_ASM could fail in a multi-processor environment.
5. The makefiles for libpq and libpgtcl did not make a shared library for
the univel port.
Diffstat (limited to 'src/makefiles')
| -rw-r--r-- | src/makefiles/Makefile.univel | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/makefiles/Makefile.univel b/src/makefiles/Makefile.univel index 3bfc5c0799..4048f3977b 100644 --- a/src/makefiles/Makefile.univel +++ b/src/makefiles/Makefile.univel @@ -1,9 +1,4 @@ -# -# The univel port is almost guaranteed NOT to work yet. -# -# MAKE_EXPORTS is required for svr4 loaders that want a file of -# symbol names to tell them what to export/import. -#MAKE_EXPORTS= true +LDFLAGS+= -lc89 -Wl,-Bexport %.so: %.o $(LD) -G -Bdynamic -o $@ $< |
