diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-08 13:24:57 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-08 13:24:57 +0800 |
commit | dbea417073f08cbc884225a392784abf613d320a (patch) | |
tree | 139b100c232a9b8e8ec610cf4957e853ed4c5ea0 /configure.ac | |
parent | 79a5ba4766cc955ca62de807e3c41e3203555958 (diff) |
Further generalise the autotools files
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 655b47a..1fd249c 100644 --- a/configure.ac +++ b/configure.ac @@ -7,4 +7,20 @@ AC_TYPE_SIZE_T AC_CHECK_FUNCS([strrchr memset]) AM_PROG_AR LT_INIT +AC_CANONICAL_HOST +case $host_vendor in + *apple* ) apple=true;; + *) apple=false;; +esac +AM_CONDITIONAL([APPLE], [test x$apple = xtrue]) +case $host_cpu in + *wasm* ) wasm=true;; + *) wasm=false;; +esac +AM_CONDITIONAL([WASM], [test x$wasm = xtrue]) +case $host in + *arm*apple-darwin1* ) ios=true;; + *) ios=false;; +esac +AM_CONDITIONAL([IOS], [test x$ios = xtrue]) AC_OUTPUT |