diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-08-24 09:35:43 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-08-24 09:36:26 +0200 |
commit | 9fa09916db2e0d35194081175413336146e55a0e (patch) | |
tree | a49d8f8bea74b8b7da9a7bf0b7557aef27c91ae4 /configure.ac | |
parent | 4c98b0f7091a37dd79b45b6ee0af96971d454d27 (diff) |
Remove libtool usage from configure.ac
We do not build any shared libraries, there is no reason to use libtool
or disable static. We do build static libraries, for which we need ranlib.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index bbd948d..c5fe34a 100644 --- a/configure.ac +++ b/configure.ac @@ -19,10 +19,9 @@ AM_COND_IF([UNIT_TESTS], [: ${CFLAGS=""}], []) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([foreign subdir-objects dist-bzip2]) AM_SILENT_RULES([yes]) -AC_PROG_LIBTOOL -AC_DISABLE_STATIC AC_PROG_CC AC_PROG_INSTALL +AC_PROG_RANLIB AC_SYS_LARGEFILE m4_ifndef([PKG_PROG_PKG_CONFIG], |