0
|
1 /* Synched up with: FSF 19.31. */
|
|
2
|
|
3 #include "intel386.h"
|
|
4
|
|
5 #ifndef __GNUC__
|
|
6 /* Allow emacs to link with "bcopy()" unresolved. Works around a
|
|
7 problem where /usr/lib/libX11.so provides bcopy, but
|
|
8 /usr/ccs/lib/libX11.so does not. */
|
|
9 #define LD_SWITCH_X_DEFAULT -Wl,-z,nodefs
|
|
10 #else /* __GNUC__ */
|
|
11
|
|
12 /* Assuming we are using GNU ld, pass a -R option to it
|
|
13 so that shared libraries will be found at execution time
|
|
14 just as they are found at link time. */
|
|
15 #define LD_SWITCH_X_DEFAULT -Xlinker LD_SWITCH_X_SITE_AUX
|
|
16
|
|
17 #endif /* __GNUC__ */
|