diff options
author | Nikias Bassen | 2021-09-13 20:06:50 +0200 |
---|---|---|
committer | Nikias Bassen | 2021-09-13 20:06:50 +0200 |
commit | bcf56b30fea3b841ee11a9b4f3ac74f6de465f3d (patch) | |
tree | 70b4f8642544771453d93682ce6a71a4d4e72010 /configure.ac | |
parent | 3dda9d2701a34f02058425eea25431122283177c (diff) | |
download | libirecovery-bcf56b30fea3b841ee11a9b4f3ac74f6de465f3d.tar.gz libirecovery-bcf56b30fea3b841ee11a9b4f3ac74f6de465f3d.tar.bz2 |
Update deprecated autoconf macros and m4 files
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index d136f93..7617d61 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_PREREQ(2.64) +AC_PREREQ(2.68) AC_INIT([libirecovery], [1.0.1], [https://github.com/libimobiledevice/libirecovery/issues],, [https://libimobiledevice.org]) AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip check-news]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) @@ -24,12 +24,11 @@ AC_SUBST(LIBIRECOVERY_SO_VERSION) # Checks for programs. AC_PROG_CC -AC_PROG_CXX +#AC_PROG_CXX AM_PROG_CC_C_O -AC_PROG_LIBTOOL +LT_INIT # Checks for header files. -AC_HEADER_STDC AC_CHECK_HEADERS([stdint.h stdlib.h string.h]) # Checks for typedefs, structures, and compiler characteristics. @@ -180,7 +179,7 @@ AM_CONDITIONAL(WITH_UDEV, test "x$with_udev" = "xyes") m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) -AC_OUTPUT([ +AC_CONFIG_FILES([ Makefile src/Makefile src/libirecovery-1.0.pc @@ -188,6 +187,7 @@ include/Makefile tools/Makefile udev/Makefile ]) +AC_OUTPUT echo " Configuration for $PACKAGE $VERSION: |