diff options
author | DRC <dcommander@users.sourceforge.net> | 2010-01-22 09:37:27 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2010-01-22 09:37:27 +0000 |
commit | 3cca6af4ae0d5a97b4d436b126278b332eba6192 (patch) | |
tree | 92f90c7dcf4d62cbe6d573cbdd71e552d923e7f4 /release | |
parent | d455393c8554bec83f13eb4a4fe96ff9067f58d8 (diff) | |
download | tigervnc-3cca6af4ae0d5a97b4d436b126278b332eba6192.tar.gz tigervnc-3cca6af4ae0d5a97b4d436b126278b332eba6192.zip |
Use configure scripts included in the tarball, if they exist. This is to avoid problems caused by trying to re-generate the configure scripts using older versions of Autotools than the ones that were used to generate the scripts in the tarball.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3953 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'release')
-rwxr-xr-x | release/build-compat-osx | 4 | ||||
-rwxr-xr-x | release/build-osx-64 | 4 | ||||
-rwxr-xr-x | release/build-osx-m32 | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/release/build-compat-osx b/release/build-compat-osx index fd85bda4..af492c5f 100755 --- a/release/build-compat-osx +++ b/release/build-compat-osx @@ -15,7 +15,9 @@ CXXFLAGS=$CFLAGS LDFLAGS=$CFLAGS CPPFLAGS=$CFLAGS export CFLAGS CXXFLAGS LDFLAGS CPPFLAGS CC CXX CPP -autoreconf -fiv +if [ ! -f ./configure ]; then + autoreconf -fiv +fi configure --x-libraries=/usr/X11R6/lib/ make popd diff --git a/release/build-osx-64 b/release/build-osx-64 index 417450f7..3328a8ad 100755 --- a/release/build-osx-64 +++ b/release/build-osx-64 @@ -9,7 +9,9 @@ pushd $SCRIPTDIR/.. CFLAGS='-O3' CXXFLAGS=$CFLAGS export CFLAGS CXXFLAGS -autoreconf -fiv +if [ ! -f ./configure ]; then + autoreconf -fiv +fi configure --host=x86_64-apple-darwin10.0.0 NASM=/opt/local/bin/nasm make popd diff --git a/release/build-osx-m32 b/release/build-osx-m32 index f2feeaa3..02cb2954 100755 --- a/release/build-osx-m32 +++ b/release/build-osx-m32 @@ -10,7 +10,9 @@ CFLAGS='-O3 -m32' CXXFLAGS=$CFLAGS LDFLAGS=$CFLAGS export CFLAGS CXXFLAGS LDFLAGS -autoreconf -fiv +if [ ! -f ./configure ]; then + autoreconf -fiv +fi configure make popd |