[uClibc-cvs] uClibc/libc/sysdeps/linux/alpha brk.S,1.1,1.2

Erik Andersen andersen at uclibc.org
Fri May 30 04:48:17 UTC 2003


Update of /var/cvs/uClibc/libc/sysdeps/linux/alpha
In directory winder:/tmp/cvs-serv14565/libc/sysdeps/linux/alpha

Modified Files:
	brk.S 
Log Message:
In a number of places we erroneously used tests such as '#ifdef PIC' when we
should instead have been testing for '#ifdef __PIC__'.  This resulted in
NON-PIC code getting mixed into the shared library.  Oops!!!
 -Erik


Index: brk.S
===================================================================
RCS file: /var/cvs/uClibc/libc/sysdeps/linux/alpha/brk.S,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- brk.S	10 May 2002 08:28:10 -0000	1.1
+++ brk.S	30 May 2003 04:47:43 -0000	1.2
@@ -25,7 +25,7 @@
 #define _ERRNO_H
 #include <bits/errno.h>
 
-#ifdef PIC
+#ifdef __PIC__
 .section .bss
 	.align 3
 	.globl __curbrk



More information about the uClibc-cvs mailing list