aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Kubecek <mkubecek@suse.cz>2023-06-05 00:28:36 +0200
committerMichal Kubecek <mkubecek@suse.cz>2023-06-05 00:28:36 +0200
commit86c0c411eae9ff4b0ed68119d8cbbb50608057cd (patch)
tree0c617a8534ac9af2cb01e4007c36c211ff783eaf
parentdd8e3ae827371886fe73ece8ba749643a25224d0 (diff)
downloadethtool-86c0c411eae9ff4b0ed68119d8cbbb50608057cd.tar.gz
do not check for strtol() function
The C11 standard guarantees strtol() function to be provided. As we require C11 now, the autoconf check is no longer necessary. Signed-off-by: Michal Kubecek <mkubecek@suse.cz>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 6420571..0d1fd22 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,7 +32,7 @@ dnl Checks for typedefs, structures, and compiler characteristics.
dnl Checks for library functions.
AC_HEADER_STDC
-AC_CHECK_FUNCS(socket strtol)
+AC_CHECK_FUNCS(socket)
dnl Check for options
AC_ARG_ENABLE(pretty-dump,