1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-08-08 17:22:05 +03:00

Rename module netdb to netdb-h.

* modules/netdb-h: Renamed from modules/netdb.
* modules/netdb-h-tests: Renamed from modules/netdb-tests.
* modules/netdb-h-c++-tests: Renamed from modules/netdb-c++-tests.
* tests/test-netdb-h.c: Renamed from tests/test-netdb.c.
* tests/test-netdb-h-c++.cc: Renamed from tests/test-netdb-c++.cc.
* doc/posix-headers/netdb.texi: Update.
* modules/* (Depends-on): Update.
* modules/netdb: New file.
This commit is contained in:
Bruno Haible
2024-12-27 23:14:29 +01:00
parent c08ded3955
commit bda7947ecc
13 changed files with 112 additions and 75 deletions

View File

@@ -1,3 +1,15 @@
2024-12-27 Bruno Haible <bruno@clisp.org>
Rename module netdb to netdb-h.
* modules/netdb-h: Renamed from modules/netdb.
* modules/netdb-h-tests: Renamed from modules/netdb-tests.
* modules/netdb-h-c++-tests: Renamed from modules/netdb-c++-tests.
* tests/test-netdb-h.c: Renamed from tests/test-netdb.c.
* tests/test-netdb-h-c++.cc: Renamed from tests/test-netdb-c++.cc.
* doc/posix-headers/netdb.texi: Update.
* modules/* (Depends-on): Update.
* modules/netdb: New file.
2024-12-27 Bruno Haible <bruno@clisp.org> 2024-12-27 Bruno Haible <bruno@clisp.org>
Rename module monetary to monetary-h. Rename module monetary to monetary-h.

View File

@@ -3,8 +3,8 @@
POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/netdb.h.html} POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/netdb.h.html}
Gnulib module: netdb Gnulib module: netdb-h
@mindex netdb @mindex netdb-h
Portability problems fixed by Gnulib: Portability problems fixed by Gnulib:
@itemize @itemize

View File

@@ -7,7 +7,7 @@ lib/gai_strerror.c
m4/getaddrinfo.m4 m4/getaddrinfo.m4
Depends-on: Depends-on:
netdb netdb-h
sys_socket sys_socket
extensions extensions
gettext-h [test $HAVE_GETADDRINFO = 0 || test $REPLACE_GETADDRINFO = 1 || test $HAVE_DECL_GAI_STRERROR = 0 || test $REPLACE_GAI_STRERROR = 1] gettext-h [test $HAVE_GETADDRINFO = 0 || test $REPLACE_GETADDRINFO = 1 || test $HAVE_DECL_GAI_STRERROR = 0 || test $REPLACE_GAI_STRERROR = 1]

View File

@@ -8,7 +8,7 @@ m4/getdomainname.m4
Depends-on: Depends-on:
unistd unistd
extensions extensions
netdb [test $HAVE_DECL_GETDOMAINNAME = 0 || test $REPLACE_GETDOMAINNAME = 1] netdb-h [test $HAVE_DECL_GETDOMAINNAME = 0 || test $REPLACE_GETDOMAINNAME = 1]
sys_socket [test $HAVE_DECL_GETDOMAINNAME = 0 || test $REPLACE_GETDOMAINNAME = 1] sys_socket [test $HAVE_DECL_GETDOMAINNAME = 0 || test $REPLACE_GETDOMAINNAME = 1]
configure.ac: configure.ac:

View File

@@ -1,51 +1,20 @@
Description: Description:
A <netdb.h> for systems lacking it. A <netdb.h> for systems lacking it.
Status:
deprecated
Notice:
This module is deprecated. Use the module 'netdb-h' instead.
Files: Files:
lib/netdb.in.h
m4/netdb_h.m4
Depends-on: Depends-on:
gen-header netdb-h
include_next
snippet/arg-nonnull
snippet/c++defs
snippet/warn-on-use
sys_socket
configure.ac: configure.ac:
gl_NETDB_H
gl_NETDB_H_REQUIRE_DEFAULTS
AC_PROG_MKDIR_P
Makefile.am: Makefile.am:
BUILT_SOURCES += netdb.h
# We need the following in order to create <netdb.h> when the system
# doesn't have one that works with the given compiler.
netdb.h: netdb.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
@NMD@ $(AM_V_GEN)$(MKDIR_P) '%reldir%'
$(gl_V_at)$(SED_HEADER_STDOUT) \
-e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
-e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
-e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
-e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
-e 's|@''NEXT_NETDB_H''@|$(NEXT_NETDB_H)|g' \
-e 's|@''HAVE_NETDB_H''@|$(HAVE_NETDB_H)|g' \
-e 's/@''GNULIB_GETADDRINFO''@/$(GNULIB_GETADDRINFO)/g' \
-e 's|@''HAVE_STRUCT_ADDRINFO''@|$(HAVE_STRUCT_ADDRINFO)|g' \
-e 's|@''HAVE_DECL_FREEADDRINFO''@|$(HAVE_DECL_FREEADDRINFO)|g' \
-e 's|@''HAVE_DECL_GAI_STRERROR''@|$(HAVE_DECL_GAI_STRERROR)|g' \
-e 's|@''HAVE_DECL_GETADDRINFO''@|$(HAVE_DECL_GETADDRINFO)|g' \
-e 's|@''HAVE_DECL_GETNAMEINFO''@|$(HAVE_DECL_GETNAMEINFO)|g' \
-e 's|@''REPLACE_GAI_STRERROR''@|$(REPLACE_GAI_STRERROR)|g' \
-e 's|@''REPLACE_GETADDRINFO''@|$(REPLACE_GETADDRINFO)|g' \
-e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
-e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
-e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
$(srcdir)/netdb.in.h > $@-t
$(AM_V_at)mv $@-t $@
MOSTLYCLEANFILES += netdb.h netdb.h-t
Include: Include:
<netdb.h> <netdb.h>
@@ -54,4 +23,3 @@ License:
LGPLv2+ LGPLv2+
Maintainer: Maintainer:
Simon Josefsson

View File

@@ -1,19 +0,0 @@
Files:
tests/test-netdb-c++.cc
tests/signature.h
Status:
c++-test
Depends-on:
ansi-c++-opt
configure.ac:
Makefile.am:
if ANSICXX
TESTS += test-netdb-c++
check_PROGRAMS += test-netdb-c++
test_netdb_c___SOURCES = test-netdb-c++.cc
test_netdb_c___LDADD = $(LDADD) $(GETADDRINFO_LIB)
endif

57
modules/netdb-h Normal file
View File

@@ -0,0 +1,57 @@
Description:
A <netdb.h> for systems lacking it.
Files:
lib/netdb.in.h
m4/netdb_h.m4
Depends-on:
gen-header
include_next
snippet/arg-nonnull
snippet/c++defs
snippet/warn-on-use
sys_socket
configure.ac:
gl_NETDB_H
gl_NETDB_H_REQUIRE_DEFAULTS
AC_PROG_MKDIR_P
Makefile.am:
BUILT_SOURCES += netdb.h
# We need the following in order to create <netdb.h> when the system
# doesn't have one that works with the given compiler.
netdb.h: netdb.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
@NMD@ $(AM_V_GEN)$(MKDIR_P) '%reldir%'
$(gl_V_at)$(SED_HEADER_STDOUT) \
-e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
-e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
-e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
-e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
-e 's|@''NEXT_NETDB_H''@|$(NEXT_NETDB_H)|g' \
-e 's|@''HAVE_NETDB_H''@|$(HAVE_NETDB_H)|g' \
-e 's/@''GNULIB_GETADDRINFO''@/$(GNULIB_GETADDRINFO)/g' \
-e 's|@''HAVE_STRUCT_ADDRINFO''@|$(HAVE_STRUCT_ADDRINFO)|g' \
-e 's|@''HAVE_DECL_FREEADDRINFO''@|$(HAVE_DECL_FREEADDRINFO)|g' \
-e 's|@''HAVE_DECL_GAI_STRERROR''@|$(HAVE_DECL_GAI_STRERROR)|g' \
-e 's|@''HAVE_DECL_GETADDRINFO''@|$(HAVE_DECL_GETADDRINFO)|g' \
-e 's|@''HAVE_DECL_GETNAMEINFO''@|$(HAVE_DECL_GETNAMEINFO)|g' \
-e 's|@''REPLACE_GAI_STRERROR''@|$(REPLACE_GAI_STRERROR)|g' \
-e 's|@''REPLACE_GETADDRINFO''@|$(REPLACE_GETADDRINFO)|g' \
-e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
-e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
-e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
$(srcdir)/netdb.in.h > $@-t
$(AM_V_at)mv $@-t $@
MOSTLYCLEANFILES += netdb.h netdb.h-t
Include:
<netdb.h>
License:
LGPLv2+
Maintainer:
Simon Josefsson

19
modules/netdb-h-c++-tests Normal file
View File

@@ -0,0 +1,19 @@
Files:
tests/test-netdb-h-c++.cc
tests/signature.h
Status:
c++-test
Depends-on:
ansi-c++-opt
configure.ac:
Makefile.am:
if ANSICXX
TESTS += test-netdb-h-c++
check_PROGRAMS += test-netdb-h-c++
test_netdb_h_c___SOURCES = test-netdb-h-c++.cc
test_netdb_h_c___LDADD = $(LDADD) $(GETADDRINFO_LIB)
endif

12
modules/netdb-h-tests Normal file
View File

@@ -0,0 +1,12 @@
Files:
tests/test-netdb-h.c
Depends-on:
netdb-h-c++-tests
assert-h
configure.ac:
Makefile.am:
TESTS += test-netdb-h
check_PROGRAMS += test-netdb-h

View File

@@ -1,12 +0,0 @@
Files:
tests/test-netdb.c
Depends-on:
netdb-c++-tests
assert-h
configure.ac:
Makefile.am:
TESTS += test-netdb
check_PROGRAMS += test-netdb

View File

@@ -20,7 +20,7 @@ locale-h
malloc-h malloc-h
math-h math-h
monetary-h monetary-h
netdb netdb-h
poll-h poll-h
pthread-h pthread-h
pty pty