mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 06:30:05 +00:00
Update.
1999-05-02 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * sunrpc/Makefile: Generate dependencies for all flavors of librpcsvc objects. (rpcgen-cmd): Pass -Y flag here and remove it from the macro invocations. 1999-05-02 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * elf/dlopenold.c: Move #if down after includes to get dependencies right. 1999-05-01 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * sysdeps/generic/bzero.c: Undefine __bzero.
This commit is contained in:
parent
2d8e6e74c1
commit
e57931a826
16
ChangeLog
16
ChangeLog
@ -1,3 +1,19 @@
|
|||||||
|
1999-05-02 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
|
||||||
|
|
||||||
|
* sunrpc/Makefile: Generate dependencies for all flavors of
|
||||||
|
librpcsvc objects.
|
||||||
|
(rpcgen-cmd): Pass -Y flag here and remove it from the macro
|
||||||
|
invocations.
|
||||||
|
|
||||||
|
1999-05-02 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
|
||||||
|
|
||||||
|
* elf/dlopenold.c: Move #if down after includes to get
|
||||||
|
dependencies right.
|
||||||
|
|
||||||
|
1999-05-01 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
|
||||||
|
|
||||||
|
* sysdeps/generic/bzero.c: Undefine __bzero.
|
||||||
|
|
||||||
1999-05-02 Ulrich Drepper <drepper@cygnus.com>
|
1999-05-02 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/netax25/ax25.h: Update from kernel header.
|
* sysdeps/unix/sysv/linux/netax25/ax25.h: Update from kernel header.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Load a shared object at run time.
|
/* Load a shared object at run time.
|
||||||
Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
|
Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -17,14 +17,14 @@
|
|||||||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
/* This file is for compatibility with glibc 2.0. Compile it only if
|
|
||||||
versioning is used. */
|
|
||||||
#if defined PIC && DO_VERSIONING
|
|
||||||
|
|
||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <elf/ldsodefs.h>
|
#include <elf/ldsodefs.h>
|
||||||
|
|
||||||
|
/* This file is for compatibility with glibc 2.0. Compile it only if
|
||||||
|
versioning is used. */
|
||||||
|
#if defined PIC && DO_VERSIONING
|
||||||
|
|
||||||
struct dlopen_args
|
struct dlopen_args
|
||||||
{
|
{
|
||||||
/* The arguments for dlopen_doit. */
|
/* The arguments for dlopen_doit. */
|
||||||
|
@ -123,9 +123,9 @@ $(objpfx)rpcgen: $(addprefix $(objpfx),$(rpcgen-objs)) \
|
|||||||
$(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
|
$(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
|
||||||
$(+link)
|
$(+link)
|
||||||
|
|
||||||
# Tell rpcgen that it should unset LD_LIBRARY_PATH before executing the
|
# Tell rpcgen where to find the C preprocessor.
|
||||||
# preprocessor.
|
rpcgen-cmd = $(built-program-cmd) -Y `$(CC) -print-file-name=cpp | \
|
||||||
rpcgen-cmd = $(built-program-cmd)
|
sed "s|/cpp$$||"`
|
||||||
|
|
||||||
# Install the rpc data base file.
|
# Install the rpc data base file.
|
||||||
$(inst_sysconfdir)/rpc: etc.rpc $(+force)
|
$(inst_sysconfdir)/rpc: etc.rpc $(+force)
|
||||||
@ -139,8 +139,7 @@ $(rpcsvc:%.x=$(objpfx)rpcsvc/%.h): $(objpfx)rpcsvc/%.h: $(objpfx)rpcsvc/%.stmp
|
|||||||
$(objpfx)rpcsvc/%.stmp: rpcsvc/%.x $(objpfx)rpcgen
|
$(objpfx)rpcsvc/%.stmp: rpcsvc/%.x $(objpfx)rpcgen
|
||||||
$(make-target-directory)
|
$(make-target-directory)
|
||||||
-@rm -f ${@:stmp=T} $@
|
-@rm -f ${@:stmp=T} $@
|
||||||
$(rpcgen-cmd) -Y `$(CC) -print-file-name=cpp | sed "s|/cpp$$||"` \
|
$(rpcgen-cmd) -h $< -o ${@:stmp=T}
|
||||||
-h $< -o ${@:stmp=T}
|
|
||||||
$(move-if-change) $(@:stmp=T) $(@:stmp=h)
|
$(move-if-change) $(@:stmp=T) $(@:stmp=h)
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
@ -149,16 +148,19 @@ $(rpcsvc:%.x=$(objpfx)x%.c): $(objpfx)x%.c: $(objpfx)x%.stmp
|
|||||||
@:
|
@:
|
||||||
$(objpfx)x%.stmp: rpcsvc/%.x $(objpfx)rpcgen
|
$(objpfx)x%.stmp: rpcsvc/%.x $(objpfx)rpcgen
|
||||||
-@rm -f ${@:stmp=T} $@
|
-@rm -f ${@:stmp=T} $@
|
||||||
$(rpcgen-cmd) -Y `$(CC) -print-file-name=cpp | sed "s|/cpp$$||"` \
|
$(rpcgen-cmd) -c $< -o ${@:stmp=T}
|
||||||
-c $< -o ${@:stmp=T}
|
|
||||||
$(move-if-change) $(@:stmp=T) $(@:stmp=c)
|
$(move-if-change) $(@:stmp=T) $(@:stmp=c)
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
# The generated source files depend on the corresponding generated headers.
|
# The generated source files depend on the corresponding generated headers.
|
||||||
# Gratuitous dependency on generated .c file here just gets it mentioned to
|
# Gratuitous dependency on generated .c file here just gets it mentioned to
|
||||||
# avoid being an intermediate file and getting removed.
|
# avoid being an intermediate file and getting removed.
|
||||||
$(rpcsvc:%.x=$(objpfx)x%.o): $(objpfx)x%.o: $(objpfx)x%.c $(objpfx)rpcsvc/%.h \
|
define o-iterator-doit
|
||||||
|
$(rpcsvc:%.x=$(objpfx)x%$o): $(objpfx)x%$o: $(objpfx)x%.c $(objpfx)rpcsvc/%.h \
|
||||||
$(objpfx)rpc-proto.d
|
$(objpfx)rpc-proto.d
|
||||||
|
endef
|
||||||
|
object-suffixes-left = $(filter-out $(librpcsvc-inhibit-o),$(object-suffixes))
|
||||||
|
include $(o-iterator)
|
||||||
|
|
||||||
ifndef no_deps
|
ifndef no_deps
|
||||||
-include $(objpfx)rpc-proto.d
|
-include $(objpfx)rpc-proto.d
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1991, 1997 Free Software Foundation, Inc.
|
/* Copyright (C) 1991, 1997, 1999 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Torbjorn Granlund (tege@sics.se).
|
Contributed by Torbjorn Granlund (tege@sics.se).
|
||||||
|
|
||||||
@ -20,6 +20,8 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <memcopy.h>
|
#include <memcopy.h>
|
||||||
|
|
||||||
|
#undef __bzero
|
||||||
|
|
||||||
/* Set N bytes of S to 0. */
|
/* Set N bytes of S to 0. */
|
||||||
void
|
void
|
||||||
__bzero (s, len)
|
__bzero (s, len)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Definitions for Rose packet radio address family.
|
/* Definitions for Rose packet radio address family.
|
||||||
Copyright (C) 1998 Free Software Foundation, Inc.
|
Copyright (C) 1998, 1999 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -31,6 +31,8 @@
|
|||||||
requires ax25.h for the definition of the ax25_address structure. */
|
requires ax25.h for the definition of the ax25_address structure. */
|
||||||
#define ROSE_MTU 251
|
#define ROSE_MTU 251
|
||||||
|
|
||||||
|
#define ROSE_MAX_DIGIS 6
|
||||||
|
|
||||||
#define ROSE_DEFER 1
|
#define ROSE_DEFER 1
|
||||||
#define ROSE_T1 2
|
#define ROSE_T1 2
|
||||||
#define ROSE_T2 3
|
#define ROSE_T2 3
|
||||||
@ -74,7 +76,7 @@ struct sockaddr_rose
|
|||||||
ax25_address srose_digi;
|
ax25_address srose_digi;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct full_sockaddr_rose
|
struct full_sockaddr_rose
|
||||||
{
|
{
|
||||||
sa_family_t srose_family;
|
sa_family_t srose_family;
|
||||||
rose_address srose_addr;
|
rose_address srose_addr;
|
||||||
@ -99,7 +101,7 @@ struct rose_cause_struct
|
|||||||
unsigned char diagnostic;
|
unsigned char diagnostic;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rose_facilities_struct
|
struct rose_facilities_struct
|
||||||
{
|
{
|
||||||
rose_address source_addr, dest_addr;
|
rose_address source_addr, dest_addr;
|
||||||
ax25_address source_call, dest_call;
|
ax25_address source_call, dest_call;
|
||||||
|
Loading…
Reference in New Issue
Block a user