9b91b66222
Remove dependancy on py-curses and py-xml now that the xm toolstack is gone. Bump PKGREVISION
41 lines
1.3 KiB
Text
41 lines
1.3 KiB
Text
$NetBSD: patch-qemu-xen-traditional_configure,v 1.2 2015/01/21 08:53:21 bouyer Exp $
|
|
|
|
--- qemu-xen-traditional/configure.orig 2014-10-06 17:50:24.000000000 +0200
|
|
+++ qemu-xen-traditional/configure 2015-01-20 22:58:07.000000000 +0100
|
|
@@ -1089,7 +1089,7 @@
|
|
# Check if tools are available to build documentation.
|
|
if [ -x "`which texi2html 2>/dev/null`" ] && \
|
|
[ -x "`which pod2man 2>/dev/null`" ]; then
|
|
- build_docs="yes"
|
|
+# build_docs="yes"
|
|
fi
|
|
|
|
##########################################
|
|
@@ -1124,7 +1124,7 @@
|
|
if test -z "$prefix" ; then
|
|
prefix="/usr/local"
|
|
fi
|
|
- mansuffix="/share/man"
|
|
+ mansuffix="/man"
|
|
datasuffix="/share/qemu"
|
|
docsuffix="/share/doc/qemu"
|
|
binsuffix="/bin"
|
|
@@ -1216,6 +1216,8 @@
|
|
echo "MAKE=$make" >> $config_mak
|
|
echo "INSTALL=$install" >> $config_mak
|
|
echo "INSTALL_PROG=$install -m 0755" >> $config_mak
|
|
+echo "INSTALL_DATA=$install -m0644" >> $config_mak
|
|
+echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_mak
|
|
echo "CC=$cc" >> $config_mak
|
|
echo "HOST_CC=$host_cc" >> $config_mak
|
|
echo "AR=$ar" >> $config_mak
|
|
@@ -1493,7 +1495,9 @@
|
|
# XXX: suppress that
|
|
if [ "$bsd" = "yes" ] ; then
|
|
echo "#define O_LARGEFILE 0" >> $config_h
|
|
+ echo "#ifndef MAP_ANONYMOUS" >> $config_h
|
|
echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
|
|
+ echo "#endif" >> $config_h
|
|
echo "#define _BSD 1" >> $config_h
|
|
fi
|
|
|