Browse Source

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
tags/v1.0.90
DRC 14 years ago
parent
commit
3cca6af4ae
4 changed files with 12 additions and 4 deletions
  1. 3
    1
      release/build-compat-osx
  2. 3
    1
      release/build-osx-64
  3. 3
    1
      release/build-osx-m32
  4. 3
    1
      unix/build-xorg-7.4

+ 3
- 1
release/build-compat-osx View File

@@ -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

+ 3
- 1
release/build-osx-64 View File

@@ -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

+ 3
- 1
release/build-osx-m32 View File

@@ -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

+ 3
- 1
unix/build-xorg-7.4 View File

@@ -78,7 +78,9 @@ init()
popd

cd ..
autoreconf -fiv
if [ ! -f ./configure ]; then
autoreconf -fiv
fi
cd unix
}


Loading…
Cancel
Save