]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
curl-functions.m4: fix include line
authorDaniel Stenberg <daniel@haxx.se>
Wed, 27 Sep 2023 12:10:30 +0000 (14:10 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 27 Sep 2023 12:38:42 +0000 (14:38 +0200)
This made the getaddrinfo detection fail, but we did not spot it in the
CI because it graciously falled back to using legacy functions instead!

Follow-up to 96c29900bcec (#11940)

Closes #11965

m4/curl-functions.m4

index 1c96fb3bf07aa6804b29c646e17fbb7b669d6468..c343b93b446f088404f723c66bcfd0239db58457 100644 (file)
@@ -273,7 +273,7 @@ curl_includes_stdlib="\
 #ifdef HAVE_SYS_TYPES_H
 #  include <sys/types.h>
 #endif
-include <stdlib.h>
+#include <stdlib.h>
 /* includes end */"
   AC_CHECK_HEADERS(
     sys/types.h,