Skip to content

Commit

Permalink
conf: update to AM 2.69 - dropping AC_HEADER_STDC
Browse files Browse the repository at this point in the history
  • Loading branch information
whatdoineed2do/Ray committed Jan 14, 2024
1 parent 8bf45ee commit 6afc432
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# autoconf
#

AC_PREREQ(2.64)
AC_INIT([gpod-utils], [m4_esyscmd([git describe --tags --dirty --always | tr -d '\n'])], [https://github.com/whatdoineed2do/gpod-utils/issues], [https://github.com/whatdoineed2do/gpod-utils], [[email protected]])
AC_PREREQ([2.69])
AC_INIT([gpod-utils],[m4_esyscmd([git describe --tags --dirty --always | tr -d '\n'])],[https://github.com/whatdoineed2do/gpod-utils/issues],[https://github.com/whatdoineed2do/gpod-utils],[[email protected]])
AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip])
AC_CONFIG_MACRO_DIRS([m4])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_CONFIG_SRCDIR([src/])
AC_CONFIG_HEADERS([config.h])

AC_PROG_CC
AC_PROG_RANLIB
AC_HEADER_STDC
AC_PROG_INSTALL
PKG_PROG_PKG_CONFIG

Expand Down Expand Up @@ -48,8 +48,9 @@ if test "x$debug" = xno; then
AC_DEFINE(NDEBUG,1,[debug code])
fi

AC_OUTPUT([
AC_CONFIG_FILES([
Makefile
src/lib/Makefile
src/Makefile
])
AC_OUTPUT

0 comments on commit 6afc432

Please sign in to comment.