diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2013-02-20 07:43:18 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-02-21 16:34:48 -0600 |
commit | 22bc9a46bda8f5f88626d3fb578f5d55953c9743 (patch) | |
tree | 2cae01a9d7c448f46a4c4349ee3c1f26a62a0af2 | |
parent | 00e2ceae6c55bef40f5128a3e606f5c44351e0f9 (diff) | |
download | qemu-22bc9a46bda8f5f88626d3fb578f5d55953c9743.tar.gz qemu-22bc9a46bda8f5f88626d3fb578f5d55953c9743.tar.bz2 qemu-22bc9a46bda8f5f88626d3fb578f5d55953c9743.zip |
build: disable Wstrict-prototypes
GTK won't build with strict-prototypes due to gtkitemfactory.h:
/* We use () here to mean unspecified arguments. This is deprecated
* as of C99, but we can't change it without breaking compatibility.
* (Note that if we are included from a C++ program () will mean
* (void) so an explicit cast will be needed.)
*/
typedef void (*GtkItemFactoryCallback) ();
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Message-id: 1361367806-4599-2-git-send-email-aliguori@us.ibm.com
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -283,7 +283,7 @@ sdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}" # default flags for all hosts QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS" QEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS" -QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS" +QEMU_CFLAGS="-Wredundant-decls $QEMU_CFLAGS" QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS" QEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/include" if test "$debug_info" = "yes"; then |