aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorGreg Hartman <ghartman@google.com>2015-06-17 22:16:13 -0700
committerKeun Soo Yim <yim@google.com>2016-02-06 05:45:11 +0000
commit1d80c6a8d34f59543f7df1963c22d7efa292bcb0 (patch)
treecf683a695ca964614f69d5b2bf70e71a81c3edc0 /autogen.sh
parent54fc82147d8ea715bf2864246453d325bf546608 (diff)
downloadlibvncserver-1d80c6a8d34f59543f7df1963c22d7efa292bcb0.tar.gz
Upgrade vnc to 0.9.10
Change-Id: Ibcbe76b051fac68bca0f8adc751cefb3d407dd03 (cherry picked from commit 31e31fcc1ac7ba889759d5d0db3f73f12e47b64c) (cherry picked from commit ebeb9d1dca89946665fee5dfb2f24955aee5ad5d) (cherry picked from commit 76d215b0ae253597441c86c0cdfe6bc97f3af748) (cherry picked from commit 2225130f7fb3be0af4773012d1fae39a15960659) (cherry picked from commit 256b4d93537d1ed5a1714ce31d8bd0c6c2be2a4d)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh59
1 files changed, 3 insertions, 56 deletions
diff --git a/autogen.sh b/autogen.sh
index 2e809c6..0776325 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,57 +1,4 @@
-#! /bin/sh
-# Run this to generate all the initial makefiles, etc.
+#!/bin/sh
-set -e
-
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
-
-DIE=0
-
-AUTOMAKE=automake-1.4
-ACLOCAL=aclocal-1.4
-
-($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || {
- AUTOMAKE=automake
- ACLOCAL=aclocal
-}
-
-(autoconf --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "You must have autoconf installed to compile libvncserver."
- echo "Download the appropriate package for your distribution,"
- echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
- DIE=1
-}
-
-($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "You must have automake installed to compile libvncserver."
- echo "Get ftp://sourceware.cygnus.com/pub/automake/automake-1.4.tar.gz"
- echo "(or a newer version if it is available)"
- DIE=1
-}
-
-if test "$DIE" -eq 1; then
- exit 1
-fi
-
-(test -f $srcdir/rfb/rfb.h) || {
- echo "You must run this script in the top-level libvncserver directory"
- exit 1
-}
-
-if test -z "$*"; then
- echo "I am going to run ./configure with no arguments - if you wish "
- echo "to pass any to it, please specify them on the $0 command line."
-fi
-
-$ACLOCAL $ACLOCAL_FLAGS
-autoheader
-$AUTOMAKE --add-missing --copy
-autoconf
-
-echo "Running ./configure --enable-maintainer-mode" "$@"
-$srcdir/configure --enable-maintainer-mode "$@"
-
-echo "Now type 'make' to compile libvncserver."
+autoreconf -fiv &&
+./configure