-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
conf: update to AM 2.69 - dropping AC_HEADER_STDC
- Loading branch information
whatdoineed2do/Ray
committed
Jan 14, 2024
1 parent
8bf45ee
commit 6afc432
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
@@ -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 |