mirror of git://sourceware.org/git/glibc.git
* sysdeps/powerpc/powerpc32/dl-machine.c [! SHARED]: Further
conditionalize [! DO_VERSIONING] #error.
This commit is contained in:
parent
5d0bbaaf3a
commit
ab9ba655e1
|
|
@ -1,5 +1,8 @@
|
||||||
2002-11-20 Roland McGrath <roland@redhat.com>
|
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.
|
* scripts/abilist.awk: Grok function descriptor symbols.
|
||||||
|
|
||||||
* intl/tst-gettext.c (main): Check return values from setlocale.
|
* intl/tst-gettext.c (main): Check return values from setlocale.
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
/* Because ld.so is now versioned, these functions can be in their own file;
|
/* Because ld.so is now versioned, these functions can be in their own file;
|
||||||
no relocations need to be done to call them.
|
no relocations need to be done to call them.
|
||||||
Of course, if ld.so is not versioned... */
|
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.
|
#error This will not work with versioning turned off, sorry.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue