diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2024-10-31 15:27:12 (GMT) |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2024-10-31 15:27:12 (GMT) |
commit | 5be04ec2ceb1df77afbca4fcbf9e92a712612d6f (patch) | |
tree | 2b2e1c71dffae827c8e45cd4cccc375093d03486 /gl/m4/servent.m4 | |
parent | 6d1d1dac32841d5ca6ee51bb09b30a6c604b17e2 (diff) | |
download | monitoring-plugins-5be04ec2ceb1df77afbca4fcbf9e92a712612d6f.tar.gz |
Sync with the latest Gnulib code (d4ec02b3cc)refs/pull/2037/head
Diffstat (limited to 'gl/m4/servent.m4')
-rw-r--r-- | gl/m4/servent.m4 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gl/m4/servent.m4 b/gl/m4/servent.m4 index 0f35b8b..422003b 100644 --- a/gl/m4/servent.m4 +++ b/gl/m4/servent.m4 | |||
@@ -1,5 +1,6 @@ | |||
1 | # servent.m4 serial 4 | 1 | # servent.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. |
@@ -28,7 +29,7 @@ AC_DEFUN([gl_SERVENT], | |||
28 | AC_CACHE_CHECK([for getservbyname in winsock2.h and -lws2_32], | 29 | AC_CACHE_CHECK([for getservbyname in winsock2.h and -lws2_32], |
29 | [gl_cv_w32_getservbyname], | 30 | [gl_cv_w32_getservbyname], |
30 | [gl_cv_w32_getservbyname=no | 31 | [gl_cv_w32_getservbyname=no |
31 | gl_save_LIBS="$LIBS" | 32 | gl_saved_LIBS="$LIBS" |
32 | LIBS="$LIBS -lws2_32" | 33 | LIBS="$LIBS -lws2_32" |
33 | AC_LINK_IFELSE( | 34 | AC_LINK_IFELSE( |
34 | [AC_LANG_PROGRAM( | 35 | [AC_LANG_PROGRAM( |
@@ -40,7 +41,7 @@ AC_DEFUN([gl_SERVENT], | |||
40 | ]], | 41 | ]], |
41 | [[getservbyname(NULL,NULL);]])], | 42 | [[getservbyname(NULL,NULL);]])], |
42 | [gl_cv_w32_getservbyname=yes]) | 43 | [gl_cv_w32_getservbyname=yes]) |
43 | LIBS="$gl_save_LIBS" | 44 | LIBS="$gl_saved_LIBS" |
44 | ]) | 45 | ]) |
45 | if test "$gl_cv_w32_getservbyname" = "yes"; then | 46 | if test "$gl_cv_w32_getservbyname" = "yes"; then |
46 | SERVENT_LIB="-lws2_32" | 47 | SERVENT_LIB="-lws2_32" |