Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Checking obsolete macro AC_GNU_SOURCE (autoconf-2.62) and AC_PROG_CC_STDC (autoconf-2.70) #286

Merged
merged 2 commits into from
Nov 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ dnl Minimum Autoconf version required.
AC_PREREQ(2.59)

AC_INIT([fping],[5.1])
AC_GNU_SOURCE

m4_ifdef([AC_AUTOCONF_VERSION],[AC_USE_SYSTEM_EXTENSIONS], [AC_GNU_SOURCE])

dnl --disable-ipv4
AC_ARG_ENABLE([ipv4],
Expand Down Expand Up @@ -59,7 +60,7 @@ dnl Checks for programs.

AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_CC_STDC
m4_version_prereq([2.70],,[AC_PROG_CC_STDC])
AC_PROG_CPP
AC_PROG_INSTALL

Expand Down
Loading