diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-03-01 04:47:38 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-03-01 04:47:38 +0000 |
commit | 56b3182241347aacb7b4c47519f009ffa2b57aa8 (patch) | |
tree | bd6f3caf19abe173617ca8632828f8e0faf4d04f /src/backend/port/dynloader/univel.h | |
parent | 5b3e78afe3b207e5db91853f03a90f37e0fdb35f (diff) | |
download | postgresql-56b3182241347aacb7b4c47519f009ffa2b57aa8.tar.gz postgresql-56b3182241347aacb7b4c47519f009ffa2b57aa8.zip |
From: "Billy G. Allie" <Bill.Allie@mug.org>
The following patches will allow postgreSQL 6.3 to compile and run on a
UNIXWARE 2.1.2 system with the native C compiler with the following library
change:
The alloca function must be copied from the libucb.a archive and added
to the libgen.a archive.
Also, the GNU flex program is needed to successfully build postgreSQL.
Diffstat (limited to 'src/backend/port/dynloader/univel.h')
-rw-r--r-- | src/backend/port/dynloader/univel.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/backend/port/dynloader/univel.h b/src/backend/port/dynloader/univel.h index 38e43833da0..78222686fdf 100644 --- a/src/backend/port/dynloader/univel.h +++ b/src/backend/port/dynloader/univel.h @@ -1,23 +1,23 @@ /*------------------------------------------------------------------------- * - * port-protos.h-- + * univel.h-- * port-specific prototypes for Intel x86/UNIXWARE * * * Copyright (c) 1994, Regents of the University of California * - * port-protos.h,v 1.2 1995/03/17 06:40:18 andrew Exp + * univel.h,v 1.2 1995/03/17 06:40:18 andrew Exp * *------------------------------------------------------------------------- - */
-#ifndef PORT_PROTOS_H
-#define PORT_PROTOS_H
-
-#include <dlfcn.h>
-#include "fmgr.h" /* for func_ptr */
-#include "utils/dynamic_loader.h"
-
- /* dynloader.c */
+ */ +#ifndef PORT_PROTOS_H +#define PORT_PROTOS_H + +#include <dlfcn.h> +#include "fmgr.h" /* for func_ptr */ +#include "utils/dynamic_loader.h" + + /* dynloader.c */ /* * Dynamic Loader on Intel x86/Intel SVR4. * @@ -25,10 +25,10 @@ * libraries (ie. dlopen/dlsym/dlclose). The user must specify a shared * library as the file to be dynamically loaded. * - */
-#define pg_dlopen(f) dlopen(f,RTLD_LAZY)
-#define pg_dlsym dlsym
-#define pg_dlclose dlclose
-#define pg_dlerror dlerror
-
-#endif /* PORT_PROTOS_H */
+ */ +#define pg_dlopen(f) dlopen(f,RTLD_LAZY) +#define pg_dlsym dlsym +#define pg_dlclose dlclose +#define pg_dlerror dlerror + +#endif /* PORT_PROTOS_H */ |