From c51cc954d84499f2b30e60289eba0fc435a0858d Mon Sep 17 00:00:00 2001 From: James Booth Date: Thu, 6 Mar 2014 20:45:35 +0000 Subject: [PATCH] Moved platform check in configure.ac --- configure.ac | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/configure.ac b/configure.ac index 3649bef4..8bf08ee3 100644 --- a/configure.ac +++ b/configure.ac @@ -2,17 +2,6 @@ # Process this file with autoconf to produce a configure script. AC_INIT([profanity], [0.4.0], [boothj5web@gmail.com]) -PACKAGE_STATUS="development" - -### Get git branch and revision if in development -if test "x$PACKAGE_STATUS" = xdevelopment; then - AM_CONDITIONAL([INCLUDE_GIT_VERSION], [true]) - AC_DEFINE([HAVE_GIT_VERSION], [1], [Include git info]) -else - AM_CONDITIONAL([INCLUDE_GIT_VERSION], [false]) -fi - -AC_DEFINE_UNQUOTED([PACKAGE_STATUS], ["$PACKAGE_STATUS"], [Status of this build]) AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_HEADERS([src/config.h]) AC_CONFIG_AUX_DIR([build-aux]) @@ -29,6 +18,18 @@ AS_CASE([$host_os], [cygwin], [PLATFORM="cygwin"], [PLATFORM="nix"]) +PACKAGE_STATUS="development" + +### Get git branch and revision if in development +if test "x$PACKAGE_STATUS" = xdevelopment; then + AM_CONDITIONAL([INCLUDE_GIT_VERSION], [true]) + AC_DEFINE([HAVE_GIT_VERSION], [1], [Include git info]) +else + AM_CONDITIONAL([INCLUDE_GIT_VERSION], [false]) +fi + +AC_DEFINE_UNQUOTED([PACKAGE_STATUS], ["$PACKAGE_STATUS"], [Status of this build]) + AS_IF([test "x$PLATFORM" = xcygwin], [AC_DEFINE([PLATFORM_CYGWIN], [1], [Cygwin])])