comparison configure.ac @ 1762:a6eab6820b37

Lance Hepler's fix to configure.ac; small refactor of fastcgi.c to avoid undefined behavior
author Adam Chlipala <adam@chlipala.net>
date Sun, 13 May 2012 17:41:21 -0400
parents 74fcc977a13d
children 4cca386e5766
comparison
equal deleted inserted replaced
1761:f8ddaa296115 1762:a6eab6820b37
1 AC_INIT([urweb], [20120512]) 1 AC_INIT([urweb], [20120512])
2 WORKING_VERSION=1 2 WORKING_VERSION=1
3 AC_USE_SYSTEM_EXTENSIONS 3 AC_USE_SYSTEM_EXTENSIONS
4 4
5 # automake 1.12 requires this, but automake 1.11 doesn't recognize it 5 # automake 1.12 requires this, but automake 1.11 doesn't recognize it
6 m4_pattern_allow([AM_PROG_AR]) 6 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
7 AM_PROG_AR
8 7
9 AM_INIT_AUTOMAKE([-Wall -Werror foreign no-define]) 8 AM_INIT_AUTOMAKE([-Wall -Werror foreign no-define])
10 AC_PROG_CC() 9 AC_PROG_CC()
11 AC_PROG_LIBTOOL() 10 AC_PROG_LIBTOOL()
12 AC_CONFIG_MACRO_DIR([m4]) 11 AC_CONFIG_MACRO_DIR([m4])