Mercurial > emacs
changeset 74123:8a39f8452a5b
(LD_SWITCH_SYSTEM): Remove /usr/pkg/lib and /usr/pkg/lib from
the library search path.
(LD_SWITCH_X_DEFAULT): New macro.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Wed, 22 Nov 2006 15:17:47 +0000 |
parents | 92f9d0430fab |
children | 1611531c83d1 |
files | src/s/openbsd.h |
diffstat | 1 files changed, 10 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/s/openbsd.h Wed Nov 22 15:15:58 2006 +0000 +++ b/src/s/openbsd.h Wed Nov 22 15:17:47 2006 +0000 @@ -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