diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-04-08 18:16:11 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-04-08 18:16:11 +0000 |
commit | 856589ce5e14693ab4d4070a42102a6e2f7ce7ef (patch) | |
tree | b87532562d910b681e2962a584b338f12f256694 /lib | |
parent | 563b299f2c6dafd5058aa71991348bde14f36d11 (diff) |
No loadable font modules on static only architectures.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libXfont/Makefile.bsd-wrapper | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libXfont/Makefile.bsd-wrapper b/lib/libXfont/Makefile.bsd-wrapper index 9707a797e..d03c71eea 100644 --- a/lib/libXfont/Makefile.bsd-wrapper +++ b/lib/libXfont/Makefile.bsd-wrapper @@ -1,5 +1,9 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.3 2006/12/16 18:30:24 matthieu Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.4 2007/04/08 18:16:10 matthieu Exp $ SHARED_LIBS= Xfont 6.0 +.if ${MACHINE} == landisk || ${MACHINE} == vax +CONFIGURE_ARGS+= --disable-loadable-font-modules +.endif + .include <bsd.xorg.mk> |