diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2011-02-02 11:43:44 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2011-02-02 14:22:18 -0500 |
commit | 9c622c5fc82f2a19ae41e75398fee4ff1de52a1d (patch) | |
tree | dca2b73f607a500bb1afa87489114aef1b72bcc6 /configure.ac | |
parent | 22a434d061af224536baee6c6110b603c5c96b2c (diff) |
config: minor layout change in configure.ac
Group statements per section as per Autoconf standard layout
Quote statements where appropriate.
No functional configuration changes
This helps automated maintenance and release activities.
Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 057c056..b45c94f 100644 --- a/configure.ac +++ b/configure.ac @@ -1,12 +1,11 @@ + # Initialize Autoconf AC_PREREQ([2.60]) -AC_INIT([libXpm], - [3.5.9], - [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], - [libXpm]) +AC_INIT([libXpm], [3.5.9], + [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXpm]) AC_CONFIG_SRCDIR([Makefile.am]) -AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_MACRO_DIR([m4]) # Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) |