summaryrefslogtreecommitdiffstats
path: root/gl/m4/servent.m4
diff options
context:
space:
mode:
Diffstat (limited to 'gl/m4/servent.m4')
-rw-r--r--gl/m4/servent.m410
1 files changed, 6 insertions, 4 deletions
diff --git a/gl/m4/servent.m4 b/gl/m4/servent.m4
index 0f35b8b8..ba6ebd1d 100644
--- a/gl/m4/servent.m4
+++ b/gl/m4/servent.m4
@@ -1,8 +1,10 @@
1# servent.m4 serial 4 1# servent.m4
2dnl Copyright (C) 2008, 2010-2023 Free Software Foundation, Inc. 2# serial 5
3dnl Copyright (C) 2008, 2010-2025 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation 4dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it, 5dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved. 6dnl with or without modifications, as long as this notice is preserved.
7dnl This file is offered as-is, without any warranty.
6 8
7AC_DEFUN([gl_SERVENT], 9AC_DEFUN([gl_SERVENT],
8[ 10[
@@ -28,7 +30,7 @@ AC_DEFUN([gl_SERVENT],
28 AC_CACHE_CHECK([for getservbyname in winsock2.h and -lws2_32], 30 AC_CACHE_CHECK([for getservbyname in winsock2.h and -lws2_32],
29 [gl_cv_w32_getservbyname], 31 [gl_cv_w32_getservbyname],
30 [gl_cv_w32_getservbyname=no 32 [gl_cv_w32_getservbyname=no
31 gl_save_LIBS="$LIBS" 33 gl_saved_LIBS="$LIBS"
32 LIBS="$LIBS -lws2_32" 34 LIBS="$LIBS -lws2_32"
33 AC_LINK_IFELSE( 35 AC_LINK_IFELSE(
34 [AC_LANG_PROGRAM( 36 [AC_LANG_PROGRAM(
@@ -40,7 +42,7 @@ AC_DEFUN([gl_SERVENT],
40 ]], 42 ]],
41 [[getservbyname(NULL,NULL);]])], 43 [[getservbyname(NULL,NULL);]])],
42 [gl_cv_w32_getservbyname=yes]) 44 [gl_cv_w32_getservbyname=yes])
43 LIBS="$gl_save_LIBS" 45 LIBS="$gl_saved_LIBS"
44 ]) 46 ])
45 if test "$gl_cv_w32_getservbyname" = "yes"; then 47 if test "$gl_cv_w32_getservbyname" = "yes"; then
46 SERVENT_LIB="-lws2_32" 48 SERVENT_LIB="-lws2_32"