]> git.ipfire.org Git - thirdparty/libvirt.git/commit
build: drop check for ANSI compiler
authorEric Blake <eblake@redhat.com>
Thu, 5 Jan 2012 21:21:11 +0000 (14:21 -0700)
committerEric Blake <eblake@redhat.com>
Thu, 5 Jan 2012 21:21:11 +0000 (14:21 -0700)
commit307f3635093b0e89ff78d544d1f81a7c0f589e51
treeda368547b5399d2cddc6c1b950923480e43aaa19
parent6b780f744b02b456931932a6d8c3db8c3a149656
build: drop check for ANSI compiler

Using automake.git (will become 1.12 someday), I got this error:

configure.ac:90: error: automatic de-ANSI-fication support has been removed
/usr/local/share/aclocal-1.11a/protos.m4:13: AM_C_PROTOTYPES is expanded from...
configure.ac:90: the top level
autom4te: /usr/bin/m4 failed with exit status: 1

In short, pre-C89 compilers are no longer a viable portability
target.  Besides, our code base already requires C99, so worrying
about pre-C89 seems pointless.

* configure.ac (AM_C_PROTOTYPES): Drop, since newer automake no
longer provides it.
configure.ac