From patchwork Wed Oct 28 12:46:42 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?UsODwqltaSBDYXJkb25h?= X-Patchwork-Id: 56280 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n9SCldwS006035 for ; Wed, 28 Oct 2009 12:47:39 GMT Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id C4C3E9F4DA; Wed, 28 Oct 2009 05:47:38 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from smtp2-g21.free.fr (smtp2-g21.free.fr [212.27.42.2]) by gabe.freedesktop.org (Postfix) with ESMTP id BFE6E9F3B3 for ; Wed, 28 Oct 2009 05:47:29 -0700 (PDT) Received: from smtp2-g21.free.fr (localhost [127.0.0.1]) by smtp2-g21.free.fr (Postfix) with ESMTP id 819B84B0158 for ; Wed, 28 Oct 2009 13:47:25 +0100 (CET) Received: from localhost.localdomain (bne75-10-88-178-16-229.fbx.proxad.net [88.178.16.229]) by smtp2-g21.free.fr (Postfix) with ESMTP id 92FD04B01AB for ; Wed, 28 Oct 2009 13:47:23 +0100 (CET) From: =?UTF-8?q?R=C3=A9mi=20Cardona?= To: intel-gfx@lists.freedesktop.org Date: Wed, 28 Oct 2009 13:46:42 +0100 Message-Id: <8461255787524f0be25227f9b31ad65b9faf4b2e.1256733444.git.remi@gentoo.org> X-Mailer: git-send-email 1.6.5.1 In-Reply-To: <136a76cc4621f5d8508233cd62020bd4e2b7fd49.1256733444.git.remi@gentoo.org> References: <38038bcbf1aea0c4f25fa5bd3187ee1d98c41be7.1256733443.git.remi@gentoo.org> <9d0cc6c09f29f4e322158ddb4a8f2acf82eb34b3.1256733443.git.remi@gentoo.org> <46decbbd49a73e45e7457c2feae0fd916b25f9be.1256733444.git.remi@gentoo.org> <136a76cc4621f5d8508233cd62020bd4e2b7fd49.1256733444.git.remi@gentoo.org> In-Reply-To: References: MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH 5/5] configure: drop some more cruft X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.9 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: intel-gfx-bounces@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org diff --git a/configure.ac b/configure.ac index 6da3ee1..0a69b67 100644 --- a/configure.ac +++ b/configure.ac @@ -65,14 +65,6 @@ AC_ARG_ENABLE(video-debug, AC_HELP_STRING([--enable-video-debug], [VIDEO_DEBUG="$enableval"], [VIDEO_DEBUG=no]) -AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], - [Compile with debug support [[default=yes]]])) -if test "x$enableval" == "xyes" ; then - DEBUGFLAGS="-g" -else - DEBUGFLAGS="" -fi - AC_ARG_ENABLE(xvmc, AC_HELP_STRING([--disable-xvmc], [Disable XvMC support [[default=yes]]]), [XVMC="$enableval"], @@ -126,7 +118,6 @@ AC_MSG_RESULT([$XVMC]) AM_CONDITIONAL(XVMC, test x$XVMC = xyes) if test "$XVMC" = yes; then AC_DEFINE(ENABLE_XVMC,1,[Enable XvMC support]) - AC_SUBST([XVMCLIB_CFLAGS]) fi AM_CONDITIONAL(KMS_ONLY, test x$KMS_ONLY = xyes) @@ -134,11 +125,9 @@ if test "$KMS_ONLY" = yes; then AC_DEFINE(KMS_ONLY,1,[Assume KMS support]) fi -AC_SUBST([XORG_CFLAGS]) -AC_SUBST([moduledir]) - DRIVER_NAME=intel AC_SUBST([DRIVER_NAME]) +AC_SUBST([moduledir]) m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.3 or later before running autoconf/autogen])]) XORG_MACROS_VERSION(1.3)