diff options
author | Bruce Momjian | 2000-10-07 14:39:21 +0000 |
---|---|---|
committer | Bruce Momjian | 2000-10-07 14:39:21 +0000 |
commit | 7ea8403c8a7325a7e019a2cee17315df91955fdf (patch) | |
tree | 91c8d7a6a65fb696d1f4de85e85cc571a7afb8a9 /src/backend/port/Makefile.in | |
parent | a759460178c22ece2cc95cfc0d18e2e9631c2499 (diff) |
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/backend/port/Makefile.in')
-rw-r--r-- | src/backend/port/Makefile.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/backend/port/Makefile.in b/src/backend/port/Makefile.in index eb7214cb36e..eb976af02ac 100644 --- a/src/backend/port/Makefile.in +++ b/src/backend/port/Makefile.in @@ -13,7 +13,7 @@ # be converted to Method 2. # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.24 2000/08/31 16:10:16 petere Exp $ +# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.25 2000/10/07 14:39:10 momjian Exp $ # #------------------------------------------------------------------------- @@ -27,6 +27,9 @@ OBJS+= @STRTOL@ @STRTOUL@ @SNPRINTF@ ifeq ($(PORTNAME), qnx4) OBJS += getrusage.o qnx4/SUBSYS.o endif +ifeq ($(PORTNAME), beos) +OBJS += beos/SUBSYS.o +endif all: SUBSYS.o SUBSYS.o: $(OBJS) @@ -37,6 +40,9 @@ qnx4/SUBSYS.o: qnx4.dir qnx4.dir: $(MAKE) -C qnx4 all +beos/SUBSYS.o: + $(MAKE) -C beos all + tas.o: tas.s $(CC) $(CFLAGS) -c tas.s |