summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorsevan <sevan@pkgsrc.org>2015-06-25 10:20:16 +0000
committersevan <sevan@pkgsrc.org>2015-06-25 10:20:16 +0000
commitc49a59bfc8711b15f21b14635540d5f50cedc33e (patch)
tree1942729e0c2d0db09ba0f3f96b0c2c1859dcfb23 /x11
parentc24bee3ce6890da099ab92a7e7acf3bc7e295387 (diff)
downloadpkgsrc-c49a59bfc8711b15f21b14635540d5f50cedc33e.tar.gz
SHA1Init() is only present in the libc of NetBSD, OpenBSD & Bitrig.
Switch if statment from a *BSD wildcard to specifically listing these operating systems so FreeBSD & DragonFlyBSD can then use security/nettle. Reviewed by wiz@
Diffstat (limited to 'x11')
-rw-r--r--x11/modular-xorg-server/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/modular-xorg-server/Makefile b/x11/modular-xorg-server/Makefile
index 79541df9f17..fc5bfc41a17 100644
--- a/x11/modular-xorg-server/Makefile
+++ b/x11/modular-xorg-server/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.93 2015/04/25 11:47:03 tnn Exp $
+# $NetBSD: Makefile,v 1.94 2015/06/25 10:20:16 sevan Exp $
DISTNAME= xorg-server-1.17.1
PKGNAME= modular-${DISTNAME}
@@ -134,7 +134,7 @@ CONFIGURE_ENV+= ac_cv_path_RAWCPP="${PREFIX}/bin/tradcpp -Uunix"
.include "options.mk"
-.if !empty(OPSYS:M*BSD)
+.if ${OPSYS} == "NetBSD" || ${OPSYS} == "OpenBSD" || ${OPSYS} == "Bitrig"
CONFIGURE_ARGS+= --with-sha1=libc
.else
.include "../../security/nettle/buildlink3.mk"