diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2022-11-08 20:57:20 +0200 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2022-11-08 20:57:20 +0200 |
commit | be1a8aaf3074afee28d3c7ee34acd5aabe0f8634 (patch) | |
tree | e285ff6bbe1495f7481585423ceeeb006d30c213 | |
parent | 1edc8b0525af34ad1030213a90086cd941056b8a (diff) | |
download | tcp-be1a8aaf3074afee28d3c7ee34acd5aabe0f8634.tar.gz |
Check functions after libraries
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ef819ea..0f8d314 100644 --- a/configure.ac +++ b/configure.ac @@ -28,9 +28,9 @@ AC_CHECK_MEMBERS([struct sf_hdtr.hdr_cnt], [], [], # Checks for library functions. AC_FUNC_MALLOC -AC_CHECK_FUNCS([memset sendfile strerror]) AC_SEARCH_LIBS([socket], [socket]) AC_SEARCH_LIBS([sendfile], [sendfile]) +AC_CHECK_FUNCS([memset sendfile strerror]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT() |