diff options
author | dscho <dscho> | 2009-02-03 12:15:11 +0000 |
---|---|---|
committer | dscho <dscho> | 2009-02-03 12:15:11 +0000 |
commit | 0bbdd92baaf5a938057441fe2e684631bf24ffb7 (patch) | |
tree | fdbf087ac780b9c1432359ca4f1364a4cf798878 | |
parent | 7b5dfecfaaaf78c1f481a781f04b03df46969a5a (diff) | |
download | libtdevnc-0bbdd92baaf5a938057441fe2e684631bf24ffb7.tar.gz libtdevnc-0bbdd92baaf5a938057441fe2e684631bf24ffb7.zip |
configure: use AM_PROG_CC_C_O
Newer automakes error out due to per-file CFLAGS being used unless the
macro AM_PROG_CC_C_O is set in configure.ac.
[jes: The macro AM_PROG_CC_C_O has been around since 1999, so it should
be safe.]
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index fec3d9f..8c52afb 100644 --- a/configure.ac +++ b/configure.ac @@ -6,6 +6,7 @@ AX_PREFIX_CONFIG_H([rfb/rfbconfig.h]) # Checks for programs. AC_PROG_CC +AM_PROG_CC_C_O if test -z "$CC"; then CCLD="\$(CC)" else |