diff options
Diffstat (limited to 'gl/m4/hostent.m4')
-rw-r--r-- | gl/m4/hostent.m4 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gl/m4/hostent.m4 b/gl/m4/hostent.m4 index 3b2cc2b..36dc636 100644 --- a/gl/m4/hostent.m4 +++ b/gl/m4/hostent.m4 | |||
@@ -1,5 +1,6 @@ | |||
1 | # hostent.m4 serial 4 | 1 | # hostent.m4 |
2 | dnl Copyright (C) 2008, 2010-2023 Free Software Foundation, Inc. | 2 | # serial 5 |
3 | dnl Copyright (C) 2008, 2010-2024 Free Software Foundation, Inc. | ||
3 | dnl This file is free software; the Free Software Foundation | 4 | dnl This file is free software; the Free Software Foundation |
4 | dnl gives unlimited permission to copy and/or distribute it, | 5 | dnl gives unlimited permission to copy and/or distribute it, |
5 | dnl with or without modifications, as long as this notice is preserved. | 6 | dnl with or without modifications, as long as this notice is preserved. |
@@ -26,7 +27,7 @@ AC_DEFUN([gl_HOSTENT], | |||
26 | AC_CACHE_CHECK([for gethostbyname in winsock2.h and -lws2_32], | 27 | AC_CACHE_CHECK([for gethostbyname in winsock2.h and -lws2_32], |
27 | [gl_cv_w32_gethostbyname], | 28 | [gl_cv_w32_gethostbyname], |
28 | [gl_cv_w32_gethostbyname=no | 29 | [gl_cv_w32_gethostbyname=no |
29 | gl_save_LIBS="$LIBS" | 30 | gl_saved_LIBS="$LIBS" |
30 | LIBS="$LIBS -lws2_32" | 31 | LIBS="$LIBS -lws2_32" |
31 | AC_LINK_IFELSE( | 32 | AC_LINK_IFELSE( |
32 | [AC_LANG_PROGRAM( | 33 | [AC_LANG_PROGRAM( |
@@ -38,7 +39,7 @@ AC_DEFUN([gl_HOSTENT], | |||
38 | ]], | 39 | ]], |
39 | [[gethostbyname(NULL);]])], | 40 | [[gethostbyname(NULL);]])], |
40 | [gl_cv_w32_gethostbyname=yes]) | 41 | [gl_cv_w32_gethostbyname=yes]) |
41 | LIBS="$gl_save_LIBS" | 42 | LIBS="$gl_saved_LIBS" |
42 | ]) | 43 | ]) |
43 | if test "$gl_cv_w32_gethostbyname" = "yes"; then | 44 | if test "$gl_cv_w32_gethostbyname" = "yes"; then |
44 | HOSTENT_LIB="-lws2_32" | 45 | HOSTENT_LIB="-lws2_32" |