From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:54185) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QdoGB-0001z4-Oy for qemu-devel@nongnu.org; Mon, 04 Jul 2011 14:52:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QdoG9-0000dY-Ve for qemu-devel@nongnu.org; Mon, 04 Jul 2011 14:52:43 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:58053) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QdoG9-0000dG-HA for qemu-devel@nongnu.org; Mon, 04 Jul 2011 14:52:41 -0400 From: Stefan Weil Date: Mon, 4 Jul 2011 20:52:38 +0200 Message-Id: <1309805558-13116-1-git-send-email-weil@mail.berlios.de> In-Reply-To: <1309805099-11262-1-git-send-email-weil@mail.berlios.de> References: <1309805099-11262-1-git-send-email-weil@mail.berlios.de> Subject: [Qemu-devel] [PATCH v2] Remove unneeded setjmp.h (fix compilation on Debian "lenny") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Some versions of png.h cannot be included after setjmp.h, even when PNG_SKIP_SETJMP_CHECK was defined. setjmp.h was included from qemu-common.h and is not needed there. Removing the include statement fixes compilation of ui/vnc-enc-tight.c with CONFIG_VNC_PNG defined. Signed-off-by: Stefan Weil --- qemu-common.h | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/qemu-common.h b/qemu-common.h index abd7a75..c2b79bd 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -117,7 +117,6 @@ static inline char *realpath(const char *path, char *resolved_path) /* FIXME: Remove NEED_CPU_H. */ #ifndef NEED_CPU_H -#include #include "osdep.h" #include "bswap.h" -- 1.7.2.5