diff options
author | dscho <dscho> | 2009-02-03 12:15:21 +0000 |
---|---|---|
committer | dscho <dscho> | 2009-02-03 12:15:21 +0000 |
commit | 2475d2c288953e6bf903c36e6e08816dd798abfb (patch) | |
tree | 0bdb8ceb0dcf5f3913104f26aa439ffeef0fad8b /configure.ac | |
parent | 0bbdd92baaf5a938057441fe2e684631bf24ffb7 (diff) | |
download | libtdevnc-2475d2c288953e6bf903c36e6e08816dd798abfb.tar.gz libtdevnc-2475d2c288953e6bf903c36e6e08816dd798abfb.zip |
configure: use _cv_ in cache var name
Newer autoconf fails if _cv_ is not in the cache var name.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8c52afb..6ee075b 100644 --- a/configure.ac +++ b/configure.ac @@ -682,7 +682,7 @@ if test ! -d ./rfb; then fi AC_CREATE_STDINT_H(rfb/rfbint.h) AC_CACHE_CHECK([for in_addr_t], - inaddrt, [ + vnc_cv_inaddrt, [ AC_TRY_COMPILE([#include <sys/types.h> #include <netinet/in.h>], [in_addr_t foo; return 0;], |