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/backend/tcop/postgres.c | |
parent | a759460178c22ece2cc95cfc0d18e2e9631c2499 (diff) | |
download | postgresql-7ea8403c8a7325a7e019a2cee17315df91955fdf.tar.gz postgresql-7ea8403c8a7325a7e019a2cee17315df91955fdf.zip |
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/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index e276083788d..04a7abb002f 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.179 2000/10/07 04:00:41 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.180 2000/10/07 14:39:14 momjian Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1462,6 +1462,11 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha if (IsUnderPostmaster) { +#ifdef __BEOS__ + /* Specific beos backend stratup actions */ + beos_backend_startup(argv[0]); +#endif + /* noninteractive case: nothing should be left after switches */ if (errs || argc != optind || DBName == NULL) { @@ -1613,7 +1618,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.179 $ $Date: 2000/10/07 04:00:41 $\n"); + puts("$Revision: 1.180 $ $Date: 2000/10/07 14:39:14 $\n"); } /* |