diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-02-14 20:28:11 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-02-14 20:28:11 +0000 |
commit | c6d20cf87d3f1d1e4a4760f722a53a1986d546ce (patch) | |
tree | 2848374804bb6a2c4ffa3e54e24bc1849ee564ca | |
parent | 1e41382f1ad3e38a84ddf1e1b68cbcd951b9461b (diff) |
Disable loadable cursor on m88k systems (no shared libraries).
-rw-r--r-- | lib/libX11/Makefile.bsd-wrapper | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libX11/Makefile.bsd-wrapper b/lib/libX11/Makefile.bsd-wrapper index 0a42e0f2d..dab3b7cf9 100644 --- a/lib/libX11/Makefile.bsd-wrapper +++ b/lib/libX11/Makefile.bsd-wrapper @@ -1,10 +1,11 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.5 2007/11/26 15:10:19 matthieu Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.6 2008/02/14 20:28:10 miod Exp $ SHARED_LIBS= X11 11.1 CONFIGURE_ARGS= --without-xcb --enable-tcp-transport --enable-unix-transport --enable-IPv6 -.if ${MACHINE} == landisk || ${MACHINE} == vax +# no PIC +.if ${MACHINE} == landisk || ${MACHINE_ARCH} == m88k || ${MACHINE} == vax CONFIGURE_ARGS+= --disable-loadable-xcursor .endif |