blob: 02cb2954cc0d411f02c7158377e6818a66ded10a [file] [log] [blame]
DRCd4553932010-01-12 05:25:44 +00001#!/bin/sh
2# This script builds a 32-bit version of TigerVNC on OS/X 10.4 or later. The
3# resulting version of TigerVNC is not backward compatible.
4
5set -e
6
7SCRIPTDIR=`dirname $0`
8pushd $SCRIPTDIR/..
9CFLAGS='-O3 -m32'
10CXXFLAGS=$CFLAGS
11LDFLAGS=$CFLAGS
12export CFLAGS CXXFLAGS LDFLAGS
DRC3cca6af2010-01-22 09:37:27 +000013if [ ! -f ./configure ]; then
14 autoreconf -fiv
15fi
DRCd4553932010-01-12 05:25:44 +000016configure
17make
18popd