diff options
author | Will Andrews <will@FreeBSD.org> | 2002-03-30 09:07:53 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2002-03-30 09:07:53 +0000 |
commit | 97e6d164088095904ab49eafe23f9e1c67c494de (patch) | |
tree | 2a01fc85decccff8ce009661334e22692c899251 /x11/kdebase3 | |
parent | Update to 0.5.0. (diff) |
Fix the KDE ports to not use objprelink, if OSVERSION >= 500029. This is
not tested other than for syntax, but should DTRT from what I understand
of the problem.
Submitted by: bento
Notes
Notes:
svn path=/head/; revision=56912
Diffstat (limited to 'x11/kdebase3')
-rw-r--r-- | x11/kdebase3/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/x11/kdebase3/Makefile b/x11/kdebase3/Makefile index 66e26fa7ceeb..042ef81f0608 100644 --- a/x11/kdebase3/Makefile +++ b/x11/kdebase3/Makefile @@ -32,10 +32,14 @@ CONFIGURE_ARGS+=--with-xdmdir=${X11BASE}/lib/X11/xdm \ --without-ldap --disable-closure USE_GMAKE= yes -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 500029 +_NO_KDE_OBJPRELINK=yes +.endif + +.include "${.CURDIR}/../../x11/kde2/Makefile.kde" + .if exists(${X11BASE}/include/Xm/Xm.h) WITH_MOTIF= yes .endif |