From 1e8c7fac42f753f866eb5bbf1dac6779dc1a05e6 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 29 Sep 2023 12:01:17 +0000 Subject: [PATCH] configure: replace adhoc domain with `localhost` in tests Reviewed-by: Daniel Stenberg Closes #11988 --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index afef979ce3..b308f518f6 100644 --- a/configure.ac +++ b/configure.ac @@ -1151,7 +1151,7 @@ then #endif #endif ]],[[ - gethostbyname("www.dummysite.com"); + gethostbyname("localhost"); ]]) ],[ AC_MSG_RESULT([yes]) @@ -1174,7 +1174,7 @@ then /* Older Minix versions may need here instead */ #include ]],[[ - gethostbyname("www.dummysite.com"); + gethostbyname("localhost"); ]]) ],[ AC_MSG_RESULT([yes]) @@ -1193,7 +1193,7 @@ then #include #include ]],[[ - gethostbyname("www.dummysite.com"); + gethostbyname("localhost"); ]]) ],[ AC_MSG_RESULT([yes]) @@ -1217,7 +1217,7 @@ then struct Library *SocketBase = NULL; #endif ]],[[ - gethostbyname("www.dummysite.com"); + gethostbyname("localhost"); ]]) ],[ AC_MSG_RESULT([yes]) -- 2.47.3