diff options
author | DRC <dcommander@users.sourceforge.net> | 2010-04-12 00:25:14 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2010-04-12 00:25:14 +0000 |
commit | ee229f4259df6bc9b046acd43a1e977b822efb93 (patch) | |
tree | 89a8f8426b7e04be754b1e542fd18c521714cd3e /configure.ac | |
parent | 752acc7eefeeb0686821d770c023000f91d195e3 (diff) | |
download | tigervnc-ee229f4259df6bc9b046acd43a1e977b822efb93.tar.gz tigervnc-ee229f4259df6bc9b046acd43a1e977b822efb93.zip |
Mac package build
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4017 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6f2d5ef0..4bfb979e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.57]) AC_INIT([tigervnc], [1.0.90], [http://www.tigervnc.org]) +BUILD=`date +%Y%m%d` AC_CONFIG_AUX_DIR([.]) AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2]) @@ -155,6 +156,11 @@ AC_CHECK_DECLS([CLSID_ActiveDesktop], [BUILD_WINVNC=yes], [], ]]) AM_CONDITIONAL([BUILD_WINVNC], [ test "x$BUILD_WINVNC" = xyes ]) +# Packaging stuff +AM_CONDITIONAL([X86_64], [test "x$host_cpu" = "xx86_64"]) + +AC_SUBST(BUILD) + AC_OUTPUT([ Makefile common/Makefile |