diff options
| author | Bruce Momjian <bruce@momjian.us> | 2000-10-07 14:39:21 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2000-10-07 14:39:21 +0000 |
| commit | 7ea8403c8a7325a7e019a2cee17315df91955fdf (patch) | |
| tree | 91c8d7a6a65fb696d1f4de85e85cc571a7afb8a9 /src/makefiles/Makefile.beos | |
| parent | a759460178c22ece2cc95cfc0d18e2e9631c2499 (diff) | |
| download | postgresql-7ea8403c8a7325a7e019a2cee17315df91955fdf.tar.gz | |
The beos port in the source tree doesn't even compile. and even
after that dynamic loading isn't working and shared memory handling is
broken.
Attached with this message, there is a Zip file which contain :
* beos.diff = patch file generated with difforig
* beos = folder with beos support files which need to be moved in /
src/backend/port
* expected = foler with three file for message and precision
difference in regression test
* regression.diff = rule problem (need to kill the backend manualy)
* dynloader = dynloader files (they are also in the pacth files,
but there is so much modification that I have join full files)
Everything works except a problem in 'rules' Is there some problems
with rules in the current tree ? It used to works with last week tree.
Cyril VELTER
Diffstat (limited to 'src/makefiles/Makefile.beos')
| -rw-r--r-- | src/makefiles/Makefile.beos | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.beos b/src/makefiles/Makefile.beos index d0ca050c03..d9ebb4dee7 100644 --- a/src/makefiles/Makefile.beos +++ b/src/makefiles/Makefile.beos @@ -1,6 +1,8 @@ MK_NO_LORDER=true ifdef ELF_SYSTEM LDFLAGS += -Wl,-E +CPPFLAGS+= -I$(top_srcdir)/src/backend/port/beos endif %.so: %.o - $(LD) -x -Bshareable -o $@ $< + ln -fs $(top_srcdir)/src/backend/postgres _APP_ + $(CC) -nostart -Xlinker -soname=$@ -o $@ _APP_ $< |
