diff options
| author | Florian Weimer <fweimer@redhat.com> | 2023-02-02 09:56:42 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2023-02-05 21:35:40 +0100 |
| commit | 0e678f766f091824f99f049c96b2374595698b4d (patch) | |
| tree | a80f431be1b6fb414acd79b5b18ce65a1458a755 /configure.ng | |
| parent | 50114cd017a0a4799d8eb88cb2f53eafb7993c92 (diff) | |
| download | ngircd-0e678f766f091824f99f049c96b2374595698b4d.tar.gz ngircd-0e678f766f091824f99f049c96b2374595698b4d.zip | |
configure.ng: Include <string.h> for memset in WORKING_GETADDRINFO probe
Otherwise, the probe always fails with compilers which do not support implicit function declarations.
Diffstat (limited to 'configure.ng')
| -rw-r--r-- | configure.ng | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ng b/configure.ng index 28ababbf..b8bcd24d 100644 --- a/configure.ng +++ b/configure.ng @@ -101,6 +101,7 @@ AC_DEFUN([WORKING_GETADDRINFO],[ #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> +#include <string.h> int main(int argc, char **argv) { |