[PATCH] {Xrandr,DamageExt}/configure.ac

Lucas Correia Villa Real <[email protected]> Tue, 21 Dec 2004 08:40:26 -0200
Newsgroups gmane.comp.freedesktop.xlibs.general
Organization Shuffle Experiments
Message-ID <[email protected]>
--Boundary-00=_a2/xBcELih4TBVW
Content-Type: text/plain;
  charset="us-ascii"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Hi,

I'm compiling Xserver from CVS, and the following error appeared when 
compiling Xrandr and DamageExt:

configure.ac:40: AC_CONFIG_AUX_DIR must be called before AM_INIT_AUTOMAKE...
configure.ac:36: ... AM_INIT_AUTOMAKE called here

These trivial patches just move AC_CONFIG_AUX_DIR above AM_INIT_AUTOMAKE for 
both modules.

Cheers,
Lucas

ps: please CC:-me on any replies, as I'm not subscribed to this mailing list.

--Boundary-00=_a2/xBcELih4TBVW
Content-Type: text/x-diff; charset="us-ascii"; name="Xranrd-configure_ac.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename="Xranrd-configure_ac.patch"

--- Xrandr/configure.ac.orig	2004-12-21 02:44:04.000000000 -0200
+++ Xrandr/configure.ac	2004-12-21 02:44:59.000000000 -0200
@@ -33,11 +33,11 @@
 dnl protocol, so Xrandr version l.n.m corresponds to protocol version l.n
 dnl
 AC_INIT(libXrandr, 1.0.2, [[email protected]], libXrandr)
+AC_CONFIG_AUX_DIR(.)
 AM_INIT_AUTOMAKE([dist-bzip2])
 AM_MAINTAINER_MODE
 
 AM_CONFIG_HEADER(config.h)
-AC_CONFIG_AUX_DIR(.)
 
 # Check for progs
 AC_PROG_CC

--Boundary-00=_a2/xBcELih4TBVW
Content-Type: text/x-diff; charset="us-ascii";
	name="DamageExt-configure_ac.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename="DamageExt-configure_ac.patch"

--- DamageExt/configure.ac.orig	2004-12-21 07:35:06.000000000 -0200
+++ DamageExt/configure.ac	2004-12-21 07:35:25.000000000 -0200
@@ -25,9 +25,9 @@
 
 AC_PREREQ([2.57])
 AC_INIT([damageext], [1.0], [[email protected]], damageext)
+AC_CONFIG_AUX_DIR(.)
 AM_INIT_AUTOMAKE([dist-bzip2])
 AM_MAINTAINER_MODE
-AC_CONFIG_AUX_DIR(.)
 
 PKG_CHECK_MODULES(FIXESEXT, fixesext)
 

--Boundary-00=_a2/xBcELih4TBVW
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
xlibs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/xlibs

--Boundary-00=_a2/xBcELih4TBVW--