diff options
author | keramida <keramida@FreeBSD.org> | 2010-05-22 03:49:46 +0800 |
---|---|---|
committer | keramida <keramida@FreeBSD.org> | 2010-05-22 03:49:46 +0800 |
commit | b83c3ccfdecd30b50914715324d4f7fd8b9a30bf (patch) | |
tree | 3699e6d87eff58d6c68a63eda10159a8e3d70d2f /editors | |
parent | a7cf7b30042e31e661d79b9f8dbd406df12a0f64 (diff) | |
download | freebsd-ports-gnome-b83c3ccfdecd30b50914715324d4f7fd8b9a30bf.tar.gz freebsd-ports-gnome-b83c3ccfdecd30b50914715324d4f7fd8b9a30bf.tar.zst freebsd-ports-gnome-b83c3ccfdecd30b50914715324d4f7fd8b9a30bf.zip |
When dbus is already installed on FreeBSD 6.X emacs-nox11 may
pick it up as a dependency and fail to link with the proper
threading libraries too.
Approved by: Ashish SHUKLA <wahjava@gmail.com> (maintainer)
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs-nox11/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editors/emacs-nox11/Makefile b/editors/emacs-nox11/Makefile index c789e2f6b7c3..c4bcf5d55c02 100644 --- a/editors/emacs-nox11/Makefile +++ b/editors/emacs-nox11/Makefile @@ -11,4 +11,8 @@ PKGNAMESUFFIX= -nox11 MASTERDIR= ${.CURDIR}/../emacs LATEST_LINK= emacs-nox11 +.if ${OSVERSION} < 700000 && defined(WITH_DBUS) +BROKEN= Does not currently build with dbus support +.endif + .include "${MASTERDIR}/Makefile" |