*** /home/peter/pgsql-master/src/backend/port/dynloader/osf.h Fri Nov 9 00:54:50 2001 --- src/backend/port/dynloader/osf.h Thu Nov 15 14:56:27 2001 *************** *** 28,33 **** --- 28,39 ---- * library as the file to be dynamically loaded. * */ + + /* RTLD_GLOBAL is not available in <5.x */ + #ifndef RTLD_GLOBAL + #define RTLD_GLOBAL 0 + #endif + #define pg_dlopen(f) dlopen((f), RTLD_LAZY | RTLD_GLOBAL) #define pg_dlsym(h, f) ((PGFunction) dlsym(h, f)) #define pg_dlclose(h) dlclose(h)