[Xfce4-commits] <midori:master> Pass /usr/X11R6/include for OpenBSD to find X11
Christian Dywan
noreply at xfce.org
Sat May 1 03:12:01 CEST 2010
Updating branch refs/heads/master
to 7fe6c5614f51fccc9d8e18d0664e6a2f6880abec (commit)
from e7f04272cdab5ed017d6fd3f5449c29d871616d0 (commit)
commit 7fe6c5614f51fccc9d8e18d0664e6a2f6880abec
Author: Rivo Nurges <rix at estpak.ee>
Date: Fri Apr 30 23:34:07 2010 +0200
Pass /usr/X11R6/include for OpenBSD to find X11
wscript | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/wscript b/wscript
index 140b898..e0b8f21 100644
--- a/wscript
+++ b/wscript
@@ -218,8 +218,10 @@ def configure (conf):
args = '--define-variable=target=win32'
elif sys.platform != 'darwin':
check_pkg ('x11')
- conf.check (header_name='X11/extensions/scrnsaver.h', mandatory=False)
- conf.check (lib='Xss', mandatory=False)
+ # Pass /usr/X11R6/include for OpenBSD
+ conf.check (header_name='X11/extensions/scrnsaver.h',
+ includes='/usr/X11R6/include', mandatory=False)
+ conf.check (lib='Xss', libpath='/usr/X11R6/lib', mandatory=False)
check_pkg ('gtk+-2.0', '2.10.0', var='GTK', args=args)
check_pkg ('webkit-1.0', '1.1.1', args=args)
check_pkg ('libsoup-2.4', '2.25.2')
More information about the Xfce4-commits
mailing list