diff options
author | nox <nox@FreeBSD.org> | 2013-03-23 07:00:58 +0800 |
---|---|---|
committer | nox <nox@FreeBSD.org> | 2013-03-23 07:00:58 +0800 |
commit | 2c86d9776f751f319ac576315e970758c9aeda20 (patch) | |
tree | 404d137544e7912bd405ff8c505bd401bd0068db | |
parent | 8c002d967a87b039f58ca3a0e7e26ef77e3d9c78 (diff) | |
download | freebsd-ports-gnome-2c86d9776f751f319ac576315e970758c9aeda20.tar.gz freebsd-ports-gnome-2c86d9776f751f319ac576315e970758c9aeda20.tar.zst freebsd-ports-gnome-2c86d9776f751f319ac576315e970758c9aeda20.zip |
(Attempt to) fix build on head.
Note: setting CC=clang fails with
"interp.c:20:24: error: global register variables are not supported"
PR: ports/177279
Submitted by: Beeblebrox <zaphod@berentweb.com>
-rw-r--r-- | emulators/kqemu-kmod-devel/Makefile | 1 | ||||
-rw-r--r-- | emulators/kqemu-kmod/Makefile | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/emulators/kqemu-kmod-devel/Makefile b/emulators/kqemu-kmod-devel/Makefile index f1d5fd573e93..0e06283b79f6 100644 --- a/emulators/kqemu-kmod-devel/Makefile +++ b/emulators/kqemu-kmod-devel/Makefile @@ -23,6 +23,7 @@ COMMENT= Kernel Accelerator for QEMU CPU Emulator (development version) ONLY_FOR_ARCHS= i386 amd64 HAS_CONFIGURE= yes USE_GMAKE= yes +USE_GCC= any CONFIGURE_ARGS+= --prefix=${PREFIX} --cc=${CC} CONFLICTS= kqemu-kmod-[0-9]* diff --git a/emulators/kqemu-kmod/Makefile b/emulators/kqemu-kmod/Makefile index 60ba754f7eb1..18379c7ee16a 100644 --- a/emulators/kqemu-kmod/Makefile +++ b/emulators/kqemu-kmod/Makefile @@ -23,6 +23,7 @@ COMMENT= Kernel Accelerator for QEMU CPU Emulator ONLY_FOR_ARCHS= i386 amd64 HAS_CONFIGURE= yes USE_GMAKE= yes +USE_GCC= any CONFIGURE_ARGS+= --prefix=${PREFIX} --cc=${CC} CONFLICTS= kqemu-kmod-devel-[0-9]* |