Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit080af3d

Browse files
committed
Need to specify DYNAMIC_PATH flag to shl_load, else HPUX's dld will not
honor library search path that we so carefully installed into theexecutable ...
1 parentc983694 commit080af3d

File tree

1 file changed

+4
-2
lines changed
  • src/backend/port/dynloader

1 file changed

+4
-2
lines changed

‎src/backend/port/dynloader/hpux.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.c,v 1.15 2001/01/24 19:43:04 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.c,v 1.16 2001/02/07 17:59:58 tgl Exp $
1212
*
1313
*NOTES
1414
*all functions are defined here -- it's impossible to trace the
@@ -34,7 +34,9 @@ pg_dlopen(char *filename)
3434
* from shl_load(), rather than an abort() later on when we attempt to
3535
* call the library!
3636
*/
37-
shl_thandle=shl_load(filename,BIND_IMMEDIATE |BIND_VERBOSE,0);
37+
shl_thandle=shl_load(filename,
38+
BIND_IMMEDIATE |BIND_VERBOSE |DYNAMIC_PATH,
39+
0L);
3840

3941
return (void*)handle;
4042
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp