From cd9fa98583b51812e906f1e85cc6e370bb4aff87 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Thu, 10 May 2012 13:10:21 -0700 Subject: [PATCH] Hurd: Hurd: dl-sysdep.c: Include code only #ifdef SHARED. --- ChangeLog | 2 ++ sysdeps/mach/hurd/dl-sysdep.c | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 83afde7d03..cab048947e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2012-05-10 Samuel Thibault + * sysdeps/mach/hurd/dl-sysdep.c: Conditionalize contents on [SHARED]. + * hurd/hurd/fd.h (_hurd_fd_get): Call HURD_CRITICAL_BEGIN/ HURD_CRITICAL_END around holding _hurd_dtable_lock. * sysdeps/mach/hurd/dirfd (dirfd): Likewise. diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c index 26a212ef98..13b0010436 100644 --- a/sysdeps/mach/hurd/dl-sysdep.c +++ b/sysdeps/mach/hurd/dl-sysdep.c @@ -16,6 +16,10 @@ License along with the GNU C Library; if not, see . */ +/* In the static library, this is all handled by dl-support.c + or by the vanilla definitions in the rest of the C library. */ +#ifdef SHARED + #include #include #include @@ -667,3 +671,5 @@ _dl_init_first (int argc, ...) { /* This no-op definition only gets used if libc is not linked in. */ } + +#endif /* SHARED */ -- 2.43.5