diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-03-31 15:27:13 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-03-31 15:27:13 +0800 |
commit | e7b6017449709bef714a272dc3e6dd93f68eb5d2 (patch) | |
tree | 433c3729f0332658db08cf4029e6c1cc3fe4c983 /configure.ac | |
parent | 9d1324b2d30233b66406e1951573be9729c92038 (diff) |
Use libtool to build shared library too
and also installation setttings.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 6398220..ce29659 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,15 @@ -AC_INIT([libicclient], [0.0], [pt@darapsa.co.id]) +AC_INIT([icclient], [0.0], [pt@darapsa.co.id]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_PROG_CC -AC_PROG_RANLIB AM_PROG_AR +LT_INIT AC_CONFIG_HEADERS([config.h]) -AC_CHECK_HEADER_STDBOOL AC_CONFIG_FILES([Makefile]) +AC_CONFIG_MACRO_DIRS([m4]) +AC_CHECK_HEADER_STDBOOL +AC_C_INLINE +AC_FUNC_MALLOC +AC_FUNC_REALLOC +AC_TYPE_SIZE_T +AC_TYPE_SSIZE_T AC_OUTPUT |