diff options
author | mnag <mnag@FreeBSD.org> | 2006-03-18 20:40:47 +0800 |
---|---|---|
committer | mnag <mnag@FreeBSD.org> | 2006-03-18 20:40:47 +0800 |
commit | 3abc3ab83a3109ac13d830d3b02ab0d20d2f4b23 (patch) | |
tree | 1d7b5797826ca5a9ba8670e376161e1175c1d1ab /emulators/bochs | |
parent | 663215381d973b88900e61230a1ba7d8983f313f (diff) | |
download | freebsd-ports-gnome-3abc3ab83a3109ac13d830d3b02ab0d20d2f4b23.tar.gz freebsd-ports-gnome-3abc3ab83a3109ac13d830d3b02ab0d20d2f4b23.tar.zst freebsd-ports-gnome-3abc3ab83a3109ac13d830d3b02ab0d20d2f4b23.zip |
- Fix build on 4.x
- Minor reoganize in Makefile
PR: 94596
Submitted by: Sven Berkvens-Matthijsse <sven@ilse.net>
Diffstat (limited to 'emulators/bochs')
-rw-r--r-- | emulators/bochs/Makefile | 4 | ||||
-rw-r--r-- | emulators/bochs/files/patch-iodev-eth_vde.cc | 12 |
2 files changed, 9 insertions, 7 deletions
diff --git a/emulators/bochs/Makefile b/emulators/bochs/Makefile index d74df2dd36bd..57ae99770500 100644 --- a/emulators/bochs/Makefile +++ b/emulators/bochs/Makefile @@ -114,7 +114,6 @@ pre-patch:: @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_AMD64=yes\"" @${ECHO_MSG} .endif - @${ECHO_MSG} post-patch: @${REINPLACE_CMD} -E ' \ @@ -132,9 +131,6 @@ post-patch: ${WRKSRC}/doc/man/*.5 @${SED} 's|%%DOCSDIR%%|${DOCSDIR}|g' ${MSG_FILE} > ${PKGMESSAGE} -# Post-install -# - post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} diff --git a/emulators/bochs/files/patch-iodev-eth_vde.cc b/emulators/bochs/files/patch-iodev-eth_vde.cc index 9556d729027f..1512659d52b7 100644 --- a/emulators/bochs/files/patch-iodev-eth_vde.cc +++ b/emulators/bochs/files/patch-iodev-eth_vde.cc @@ -1,6 +1,6 @@ ---- iodev/eth_vde.cc.orig Sat Dec 10 12:37:35 2005 -+++ iodev/eth_vde.cc Thu Mar 16 13:02:15 2006 -@@ -41,13 +41,17 @@ +--- iodev/eth_vde.cc.orig Sat Dec 10 16:37:35 2005 ++++ iodev/eth_vde.cc Sat Mar 18 00:25:18 2006 +@@ -41,18 +41,22 @@ #include <sys/poll.h> #include <sys/time.h> #include <sys/resource.h> @@ -19,3 +19,9 @@ #include <assert.h> #include <fcntl.h> #include <errno.h> + #include <unistd.h> +-#include <stdint.h> ++#include <inttypes.h> + + #define SWITCH_MAGIC 0xfeedface + |