summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index cf39de2..4c58cf8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,8 @@
AC_INIT([midtrans], [0.0], [prabowo@darapsa.org])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
+AC_PROG_CPP
+AC_PROG_CXX
AM_PROG_AR
LT_INIT
PKG_CHECK_MODULES([DEPS], [libcurl json-c])
@@ -10,5 +12,8 @@ case $host in
*) ios=false;;
esac
AM_CONDITIONAL([IOS], [test "x$ios" = xtrue])
+AC_FUNC_MALLOC
+AC_TYPE_SIZE_T
AC_CONFIG_FILES([Makefile])
+AC_CONFIG_MACRO_DIRS([m4])
AC_OUTPUT