diff options
author | Adam Tkac <atkac@redhat.com> | 2009-03-13 13:58:44 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2009-03-13 13:58:44 +0000 |
commit | 4f0f7db92b11a87660424132bfbbf872ec3cc2e6 (patch) | |
tree | b2fe85322d9f205c56ee5484201b57641779cc29 | |
parent | 3f869259bfb9ece41e2997d009f9fee4c4a76d73 (diff) | |
download | tigervnc-4f0f7db92b11a87660424132bfbbf872ec3cc2e6.tar.gz tigervnc-4f0f7db92b11a87660424132bfbbf872ec3cc2e6.zip |
Make source compilable via GNU autotools which are part of RHEL 5.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3676 3789f03b-4d11-0410-bbf8-ca57d06f2519
-rw-r--r-- | common/configure.ac | 6 | ||||
-rw-r--r-- | common/jpeg/configure.ac | 2 | ||||
-rw-r--r-- | common/zlib/configure.ac | 2 | ||||
-rw-r--r-- | unix/configure.ac | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/common/configure.ac b/common/configure.ac index fea4eca0..634c14fa 100644 --- a/common/configure.ac +++ b/common/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_PREREQ([2.61]) +AC_PREREQ([2.57]) AC_INIT([librfb], [0.0.90], [http://www.tigervnc.org]) AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2]) @@ -72,10 +72,10 @@ AC_ARG_WITH([included-jpeg], AM_CONDITIONAL([INCLUDED_JPEG], [ test "x$INCLUDED_JPEG" = xyes ]) AC_CONFIG_SUBDIRS([jpeg]) -AC_CHECK_FUNCS_ONCE([vsnprintf snprintf strcasecmp strncasecmp]) +AC_CHECK_FUNCS([vsnprintf snprintf strcasecmp strncasecmp]) # IPv6 related functions -AC_CHECK_FUNCS_ONCE([inet_ntop getaddrinfo]) +AC_CHECK_FUNCS([inet_ntop getaddrinfo]) AC_CHECK_TYPES([socklen_t]) diff --git a/common/jpeg/configure.ac b/common/jpeg/configure.ac index 683ca7e7..ea03c740 100644 --- a/common/jpeg/configure.ac +++ b/common/jpeg/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_PREREQ([2.61]) +AC_PREREQ([2.57]) AC_INIT([libjpeg], [6.b]) AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2]) diff --git a/common/zlib/configure.ac b/common/zlib/configure.ac index 2befc77e..532012a4 100644 --- a/common/zlib/configure.ac +++ b/common/zlib/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_PREREQ([2.61]) +AC_PREREQ([2.57]) AC_INIT([zlib], [1.1.4]) AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2]) diff --git a/unix/configure.ac b/unix/configure.ac index 058218d2..dd2b6333 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_PREREQ([2.61]) +AC_PREREQ([2.57]) AC_INIT([tigervnc], [0.0.90], [http://www.tigervnc.org]) AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2]) |