mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
* resolv/Makefile (distribute): Remove res_hconf.h; add mapv4v6addr.h
and mapv4v6hostent.h. (routines): Move res* and gethnamaddr into libresolv-routines. (libresolv-routines): New variable, put them there. (extra-libs): New variable, list libresolv. (CPPFLAGS): Add -D for get*by* to res_get*by*.
This commit is contained in:
@ -113,6 +113,13 @@ Sun Jun 23 15:24:05 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
|||||||
|
|
||||||
Sun Jun 23 19:42:05 1996 Ulrich Drepper <drepper@cygnus.com>
|
Sun Jun 23 19:42:05 1996 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* resolv/Makefile (distribute): Remove res_hconf.h; add mapv4v6addr.h
|
||||||
|
and mapv4v6hostent.h.
|
||||||
|
(routines): Move res* and gethnamaddr into libresolv-routines.
|
||||||
|
(libresolv-routines): New variable, put them there.
|
||||||
|
(extra-libs): New variable, list libresolv.
|
||||||
|
(CPPFLAGS): Add -D for get*by* to res_get*by*.
|
||||||
|
|
||||||
* resolv/netdb.h (_PATH_NSSWITCH_CONF): New macro.
|
* resolv/netdb.h (_PATH_NSSWITCH_CONF): New macro.
|
||||||
|
|
||||||
* inet/herrno.c: New file.
|
* inet/herrno.c: New file.
|
||||||
|
6
NEWS
6
NEWS
@ -107,8 +107,10 @@ Version 2.0
|
|||||||
* The resolver code has been updated from the BIND 4.9.4-T3B release.
|
* The resolver code has been updated from the BIND 4.9.4-T3B release.
|
||||||
|
|
||||||
* The new function `malloc_find_object_address' finds the starting address
|
* The new function `malloc_find_object_address' finds the starting address
|
||||||
of a malloc'd block, given any address within the block. This can be
|
of a malloc'd block, given any address within the block;
|
||||||
useful for debugging.
|
`malloc_object_allocated_size' returns the size of an allocated block;
|
||||||
|
and `malloc_walk' lets you walk through all allocated blocks. These can
|
||||||
|
be useful for debugging; see <malloc.h> for the interfaces.
|
||||||
|
|
||||||
* There is a new malloc debugging hook `__memalign_hook'.
|
* There is a new malloc debugging hook `__memalign_hook'.
|
||||||
|
|
||||||
|
@ -22,13 +22,21 @@
|
|||||||
subdir := resolv
|
subdir := resolv
|
||||||
|
|
||||||
headers := resolv.h netdb.h arpa/nameser.h sys/bitypes.h
|
headers := resolv.h netdb.h arpa/nameser.h sys/bitypes.h
|
||||||
distribute := ../conf/portability.h res_hconf.h
|
distribute := ../conf/portability.h mapv4v6addr.h mapv4v6hostent.h
|
||||||
|
|
||||||
routines := gethnamaddr getnetbyaddr getnetbyname getnetent getnetnamadr \
|
routines := herror inet_addr inet_ntop inet_pton nsap_addr res_init
|
||||||
herror nsap_addr res_comp res_debug res_data res_init res_mkquery \
|
|
||||||
res_query res_send sethostent inet_addr inet_ntop inet_pton \
|
extra-libs := libresolv
|
||||||
res_hconf
|
libresolv-routines := gethnamaddr res_comp res_debug res_data res_mkquery \
|
||||||
|
res_query res_send
|
||||||
|
|
||||||
include ../Rules
|
include ../Rules
|
||||||
|
|
||||||
|
CPPFLAGS += -Dgethostbyname=res_gethostbyname \
|
||||||
|
-Dgethostbyname2=res_gethostbyname2 \
|
||||||
|
-Dgethostbyaddr=res_gethostbyaddr \
|
||||||
|
-Dgetnetbyname=res_getnetbyname \
|
||||||
|
-Dgetnetbyaddr=res_getnetbyaddr
|
||||||
|
|
||||||
|
# The BIND code elicits some harmless warnings.
|
||||||
+cflags += -Wno-strict-prototypes -Wno-comment -Wno-write-strings
|
+cflags += -Wno-strict-prototypes -Wno-comment -Wno-write-strings
|
||||||
|
Reference in New Issue
Block a user