blob: f2feeaa3a1e241dd1bcd0f66905321ee1175b970 [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
13autoreconf -fiv
14configure
15make
16popd