aboutsummaryrefslogtreecommitdiffstats
path: root/libpit
diff options
context:
space:
mode:
authorBenjamin Dobell <benjamin.dobell+git@glassechidna.com.au>2013-03-14 00:09:39 +1100
committerBenjamin Dobell <benjamin.dobell+git@glassechidna.com.au>2013-03-14 00:09:39 +1100
commite4011af21308a159f2e5498f48bcc293f2edde19 (patch)
treed269b737e461951c4eb58cd377ee4baa4731d964 /libpit
parentf7f29172cb11fabf1d017ecdadaf32ea37eca4df (diff)
downloadexternal_heimdall-e4011af21308a159f2e5498f48bcc293f2edde19.zip
external_heimdall-e4011af21308a159f2e5498f48bcc293f2edde19.tar.gz
external_heimdall-e4011af21308a159f2e5498f48bcc293f2edde19.tar.bz2
Ancient Mac GCC does not support C++11/C++0x. Swapped to using clang on OS X.
Diffstat (limited to 'libpit')
-rw-r--r--libpit/configure.ac7
1 files changed, 6 insertions, 1 deletions
diff --git a/libpit/configure.ac b/libpit/configure.ac
index 30fd136..4847828 100644
--- a/libpit/configure.ac
+++ b/libpit/configure.ac
@@ -4,7 +4,8 @@ AC_CANONICAL_TARGET
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([1.10 -Wall no-define foreign])
AC_CONFIG_HEADERS([config.h])
-AC_PROG_CXX
+AM_PROG_AR
+m4_pattern_allow([AM_PROG_PR], [AM_PROG_AR])
LT_INIT()
@@ -18,18 +19,22 @@ case $target in
*-linux*)
AC_DEFINE(OS_LINUX, [], [Linux backend])
AC_MSG_RESULT([Linux])
+ AC_PROG_CXX
;;
*-darwin*)
AC_DEFINE(OS_DARWIN, [], [Darwin backend])
AC_MSG_RESULT([Darwin/MacOS X])
+ AC_PROG_CXX([clang++])
;;
*-mingw*)
AC_DEFINE(OS_WINDOWS, [], [Windows backend])
AC_MSG_RESULT([Windows])
+ AC_PROG_CXX
;;
*-cygwin*)
AC_DEFINE(OS_WINDOWS, [], [Windows backend])
AC_MSG_RESULT([Windows])
+ AC_PROG_CXX
;;
*)
AC_MSG_ERROR([unsupported operating system])