]> sourceware.org Git - glibc.git/commitdiff
* sysdeps/powerpc/powerpc32/dl-machine.c [! SHARED]: Further
authorRoland McGrath <roland@gnu.org>
Thu, 21 Nov 2002 04:10:59 +0000 (04:10 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 21 Nov 2002 04:10:59 +0000 (04:10 +0000)
conditionalize [! DO_VERSIONING] #error.

ChangeLog
sysdeps/powerpc/powerpc32/dl-machine.c

index 9faa4cb93a8901fa03c7a06a841fdc6533bc7a30..259145923ecc922c31c5465096d253d3ccf31247 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2002-11-20  Roland McGrath  <roland@redhat.com>
 
+       * sysdeps/powerpc/powerpc32/dl-machine.c [! SHARED]: Further
+       conditionalize [! DO_VERSIONING] #error.
+
        * scripts/abilist.awk: Grok function descriptor symbols.
 
        * intl/tst-gettext.c (main): Check return values from setlocale.
index 644360888697a80a3a600c7bbb867bc07a38145b..065a1db6df96d180ec5566cf9e81eabd3a936795 100644 (file)
@@ -29,7 +29,7 @@
 /* Because ld.so is now versioned, these functions can be in their own file;
    no relocations need to be done to call them.
    Of course, if ld.so is not versioned...  */
-#if !(DO_VERSIONING - 0)
+#if defined SHARED && !(DO_VERSIONING - 0)
 #error This will not work with versioning turned off, sorry.
 #endif
 
This page took 0.041834 seconds and 5 git commands to generate.