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/dynloader/beos.h | |
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/dynloader/beos.h')
-rw-r--r-- | src/backend/port/dynloader/beos.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/backend/port/dynloader/beos.h b/src/backend/port/dynloader/beos.h index 9cc37430342..7ef1677e5e9 100644 --- a/src/backend/port/dynloader/beos.h +++ b/src/backend/port/dynloader/beos.h @@ -7,27 +7,12 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: beos.h,v 1.2 2000/10/03 03:11:15 momjian Exp $ + * $Id: beos.h,v 1.3 2000/10/07 14:39:11 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PORT_PROTOS_H #define PORT_PROTOS_H -#include "postgres.h" - -#include "fmgr.h" -#include "utils/dynamic_loader.h" - -char *beos_dlerror(void); -void *beos_dlopen(const char *filename); -void *beos_dlsym(void *handle, const char *name); -void beos_dlclose(void *handle); - -#define pg_dlopen(f) beos_dlopen(f) -#define pg_dlsym beos_dlsym -#define pg_dlclose beos_dlclose -#define pg_dlerror beos_dlerror - #endif /* PORT_PROTOS_H */ |