mirror of git://sourceware.org/git/glibc.git
Update.
* nscd/Makefile: When using compilers without -fpie support, also link with -lselinux if necessary. Patch by Arkadiusz Miskiewicz <arekm@pld-linux.org>.
This commit is contained in:
parent
5ca3d19c74
commit
59350982d0
|
@ -1,5 +1,9 @@
|
||||||
2004-10-14 Ulrich Drepper <drepper@redhat.com>
|
2004-10-14 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* nscd/Makefile: When using compilers without -fpie support, also
|
||||||
|
link with -lselinux if necessary.
|
||||||
|
Patch by Arkadiusz Miskiewicz <arekm@pld-linux.org>.
|
||||||
|
|
||||||
* nscd/connections.c (nscd_init): Remove file if not persistent
|
* nscd/connections.c (nscd_init): Remove file if not persistent
|
||||||
and not shared. Patch by Jerome Borsboom <j.borsboom@erasmusmc.nl>.
|
and not shared. Patch by Jerome Borsboom <j.borsboom@erasmusmc.nl>.
|
||||||
|
|
||||||
|
|
|
@ -123,10 +123,10 @@ $(objpfx)nscd_nischeck: $(objpfx)nscd_nischeck.o
|
||||||
|
|
||||||
ifeq ($(build-shared),yes)
|
ifeq ($(build-shared),yes)
|
||||||
$(objpfx)nscd: $(common-objpfx)rt/librt.so $(shared-thread-library) \
|
$(objpfx)nscd: $(common-objpfx)rt/librt.so $(shared-thread-library) \
|
||||||
$(common-objpfx)nis/libnsl.so
|
$(common-objpfx)nis/libnsl.so $(selinux-LIBS)
|
||||||
$(objpfx)nscd_nischeck: $(common-objpfx)nis/libnsl.so
|
$(objpfx)nscd_nischeck: $(common-objpfx)nis/libnsl.so
|
||||||
else
|
else
|
||||||
$(objpfx)nscd: $(common-objpfx)rt/librt.a $(static-thread-library) \
|
$(objpfx)nscd: $(common-objpfx)rt/librt.a $(static-thread-library) \
|
||||||
$(common-objpfx)nis/libnsl.a
|
$(common-objpfx)nis/libnsl.a $(selinux-LIBS)
|
||||||
$(objpfx)nscd_nischeck: $(common-objpfx)nis/libnsl.a
|
$(objpfx)nscd_nischeck: $(common-objpfx)nis/libnsl.a
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue