Re: [PATCH video-modesetting 13/14] config: layout and comment the top portion of configure.ac

2012-02-19 Thread Tormod Volden
On Sun, Feb 19, 2012 at 2:36 PM, Gaetan Nadon  wrote:
> Reorder statements to be consistent with other modules so things
> are easier to find.
>
...
> +# Initialize X.Org macros 1.8 or later for MAN_SUBSTS set by 
> XORG_MANPAGE_SECTIONS
> +m4_ifndef([XORG_MACROS_VERSION],
> +       [m4_fatal([must install xorg-macros 1.8 or later before runnign 
> autoconf/autogen])])

Maybe you can s/runnign/running at the same time.

Tormod
___
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel


[PATCH video-modesetting 13/14] config: layout and comment the top portion of configure.ac

2012-02-19 Thread Gaetan Nadon
Reorder statements to be consistent with other modules so things
are easier to find.

Signed-off-by: Gaetan Nadon 
---
 configure.ac |   20 ++--
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/configure.ac b/configure.ac
index 610c043..50a258e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,31 +20,31 @@
 #
 # Process this file with autoconf to produce a configure script
 
+# Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-video-modesetting],
 [0.1.0],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 [xf86-video-modesetting])
-
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([config.h])
-
-m4_ifndef([XORG_MACROS_VERSION],
-   [m4_fatal([must install xorg-macros 1.8 or later before runnign 
autoconf/autogen])])
-XORG_MACROS_VERSION(1.8)
-XORG_DEFAULT_OPTIONS
-
 AC_CONFIG_AUX_DIR(.)
-
-AM_INIT_AUTOMAKE([foreign dist-bzip2])
 AC_SYS_LARGEFILE
 
+# Initialize Automake
+AM_INIT_AUTOMAKE([foreign dist-bzip2])
 AM_MAINTAINER_MODE
 
-# Checks for programs.
+# Initialize libtool
 AC_DISABLE_STATIC
 AC_PROG_LIBTOOL
 
+# Initialize X.Org macros 1.8 or later for MAN_SUBSTS set by 
XORG_MANPAGE_SECTIONS
+m4_ifndef([XORG_MACROS_VERSION],
+   [m4_fatal([must install xorg-macros 1.8 or later before runnign 
autoconf/autogen])])
+XORG_MACROS_VERSION(1.8)
+XORG_DEFAULT_OPTIONS
+
 AH_TOP([#include "xorg-server.h"])
 
 AC_ARG_WITH(xorg-module-dir,
-- 
1.7.5.4

___
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel