diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-04-04 17:11:52 +0800 |
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-04-04 17:11:52 +0800 |
| commit | 711d885f0d8b6c0788bc62c0d58c44eaaf1391c9 (patch) | |
| tree | 2756e41159ca335009381364c4cb2b5ce90d9657 /configure.ac | |
| parent | 9d57190f8aa7d62877dc24066d4f0027cc53a123 (diff) | |
Shared library building and installation
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 1030563..e1fdbae 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,18 @@ -AC_INIT([librtclient], [0.0], [rt@darapsa.co.id]) +AC_INIT([rtclient], [0.0], [pt@darapsa.co.id]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_PROG_CC -AC_PROG_RANLIB +AC_PROG_CXX 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_FUNCS([memset]) +AC_CHECK_FUNCS([strstr]) +AC_CHECK_HEADER_STDBOOL +AC_C_INLINE +AC_FUNC_MALLOC +AC_FUNC_REALLOC +AC_TYPE_SIZE_T +AC_TYPE_SSIZE_T AC_OUTPUT |