Subject: unknown ld.elf_so patch?
To: None <tech-userlevel@netbsd.org>
From: Simon Burge <simonb@netbsd.org>
List: tech-userlevel
Date: 06/05/2000 14:45:23
Folks,

On the way though cleaning up my source tree, I found the following
patch for ld.elf_so.  I can't find a reference to it in any of my old
emails - an anyone identify it?  I've been using it since at least Nov
22, 1999 and haven't been noticing any problems on the pmax(s), alpha
and i386 that build out of this tree.

TIA,
Simon.
--
Index: ld.elf_so/symbol.c
===================================================================
RCS file: /cvsroot/basesrc/libexec/ld.elf_so/symbol.c,v
retrieving revision 1.7
diff -p -u -r1.7 symbol.c
--- symbol.c	1999/11/10 18:48:19	1.7
+++ symbol.c	2000/06/05 04:39:26
@@ -85,8 +85,10 @@ _rtld_symlook_list(const char *name, uns
 	def = NULL;
 	defobj = NULL;
 	for (elm = SIMPLEQ_FIRST(objlist); elm; elm = SIMPLEQ_NEXT(elm, link)) {
+#if 0	/* XXX */
 		if (elm->obj->mark == _rtld_curmark)
 			continue;
+#endif
 		elm->obj->mark = _rtld_curmark;
 		if ((symp = _rtld_symlook_obj(name, hash, elm->obj, in_plt))
 		    != NULL) {