#!/bin/sh# This script builds a 64-bit version of TigerVNC on OS/X 10.6 or later.# NASM 2.07 or later from MacPorts must be installed in /opt/local.set-e
SCRIPTDIR=`dirname$0`pushd$SCRIPTDIR/..
CFLAGS='-O3'CXXFLAGS=$CFLAGSexportCFLAGSCXXFLAGS
if[!-f./configure];thenautoreconf-fiv
fi
configure--host=x86_64-apple-darwin10.0.0NASM=/opt/local/bin/nasm
make
popd