(LD_SWITCH_SYSTEM): Remove /usr/pkg/lib and /usr/pkg/lib from

the library search path.
(LD_SWITCH_X_DEFAULT): New macro.
This commit is contained in:
Chong Yidong 2006-11-22 15:17:47 +00:00
parent 6a022bd9a7
commit 9299be0c24

View file

@ -21,13 +21,18 @@
#undef LD_SWITCH_SYSTEM
#ifdef __ELF__
/* Han Boetes <han@mijncomputer.nl> says this
is necessary, otherwise Emacs dumps core on elf systems. */
#define LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_tmp -Z -L/usr/pkg/lib -L/usr/local/lib
/* Han Boetes <han@mijncomputer.nl> says this
is necessary, otherwise Emacs dumps core on elf systems. */
#define LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_tmp -Z
/* The version of gcc on OpenBSD doesn't search /usr/local/lib by
default. */
#define LD_SWITCH_X_DEFAULT -L/usr/local/lib
#else
#define LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_tmp -L/usr/pkg/lib -L/usr/local/lib
#define LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_tmp
#define LD_SWITCH_X_DEFAULT -L/usr/local/lib
#endif