[uClibc-cvs] uClibc/ldso/libdl Makefile, 1.34, 1.35 libdl.c, 1.36, 1.37 dlib.c, 1.36, NONE
Erik Andersen
andersen at uclibc.org
Tue Feb 10 09:27:00 UTC 2004
- Previous message: [uClibc-cvs] uClibc/ldso/ldso/sparc resolve.S, 1.2, 1.3 boot1_arch.h, 1.4, NONE ld_syscalls.h, 1.6, NONE ld_sysdep.h, 1.5, NONE
- Next message: [uClibc-cvs] uClibc/utils bswap.h,1.1,1.2 readsoname.h,1.1,1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/cvs/uClibc/ldso/libdl
In directory nail:/tmp/cvs-serv25363/libdl
Modified Files:
Makefile libdl.c
Removed Files:
dlib.c
Log Message:
Rework file naming, aiming for at least a vague level of consistancy
--- dlib.c DELETED ---
Index: Makefile
===================================================================
RCS file: /var/cvs/uClibc/ldso/libdl/Makefile,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- Makefile 16 Jan 2004 18:52:51 -0000 1.34
+++ Makefile 10 Feb 2004 09:26:57 -0000 1.35
@@ -45,9 +45,9 @@
LIBDL_SHARED=libdl.so
LIBDL_SHARED_FULLNAME=libdl-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
-CSRC=dlib.c
-OBJS=dlib.o
-PIC_OBJS=dlib_pic.o
+CSRC=libdl.c
+OBJS=libdl.o
+PIC_OBJS=libdl_pic.o
all: $(OBJS) $(LIBDL) shared
@@ -61,12 +61,12 @@
$(INSTALL) -m 644 $(LIBDL) $(TOPDIR)lib
-dlib.o: dlib.c
- $(CC) $(XXFLAGS_NOPIC) -c dlib.c -o dlib.o
+libdl.o: libdl.c
+ $(CC) $(XXFLAGS_NOPIC) -c libdl.c -o libdl.o
$(STRIPTOOL) -x -R .note -R .comment $*.o
-dlib_pic.o: dlib.c
- $(CC) $(XXFLAGS) -c dlib.c -o dlib_pic.o
+libdl_pic.o: libdl.c
+ $(CC) $(XXFLAGS) -c libdl.c -o libdl_pic.o
$(STRIPTOOL) -x -R .note -R .comment $*.o
$(OBJ): Makefile
Index: libdl.c
===================================================================
RCS file: /var/cvs/uClibc/ldso/libdl/libdl.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- libdl.c 7 Feb 2004 20:08:01 -0000 1.36
+++ libdl.c 10 Feb 2004 09:26:57 -0000 1.37
@@ -80,10 +80,10 @@
char *_dl_ldsopath = 0;
struct r_debug *_dl_debug_addr = NULL;
static unsigned char *_dl_malloc_addr, *_dl_mmap_zero;
-#include "../ldso/_dl_progname.h" /* Pull in the name of ld.so */
-#include "../ldso/hash.c"
+#include "../ldso/dl-progname.h" /* Pull in the name of ld.so */
+#include "../ldso/dl-hash.c"
#define _dl_trace_loaded_objects 0
-#include "../ldso/readelflib1.c"
+#include "../ldso/dl-elf.c"
void *(*_dl_malloc_function) (size_t size);
int _dl_fixup(struct dyn_elf *rpnt, int lazy);
#endif
- Previous message: [uClibc-cvs] uClibc/ldso/ldso/sparc resolve.S, 1.2, 1.3 boot1_arch.h, 1.4, NONE ld_syscalls.h, 1.6, NONE ld_sysdep.h, 1.5, NONE
- Next message: [uClibc-cvs] uClibc/utils bswap.h,1.1,1.2 readsoname.h,1.1,1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the uClibc-cvs
mailing list