aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@redhat.com>2012-04-26 09:18:48 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2012-04-26 09:19:54 +0530
commit6e236b92765cdafb46d19e4907471699accc8269 (patch)
tree84832025094c60c94f4ad329324b549fa77da6ce /sysdeps
parentaab39a094e0f1b69d661999e3298972ef3060aa0 (diff)
downloadglibc-6e236b92765cdafb46d19e4907471699accc8269.tar
glibc-6e236b92765cdafb46d19e4907471699accc8269.tar.gz
glibc-6e236b92765cdafb46d19e4907471699accc8269.tar.bz2
glibc-6e236b92765cdafb46d19e4907471699accc8269.zip
move libgcc_s soname definition to shlib-versions
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/generic/framestate.c4
-rw-r--r--sysdeps/generic/libgcc_s.h2
-rw-r--r--sysdeps/gnu/unwind-resume.c4
3 files changed, 4 insertions, 6 deletions
diff --git a/sysdeps/generic/framestate.c b/sysdeps/generic/framestate.c
index 3638bbee7f..3bad5b579b 100644
--- a/sysdeps/generic/framestate.c
+++ b/sysdeps/generic/framestate.c
@@ -1,5 +1,5 @@
/* __frame_state_for unwinder helper function wrapper.
- Copyright (C) 2001, 2003 Free Software Foundation, Inc.
+ Copyright (C) 2001-2012 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Jakub Jelinek <jakub@redhat.com>, 2001.
@@ -23,7 +23,7 @@
#define __frame_state_for fallback_frame_state_for
#include <unwind-dw2.c>
#undef __frame_state_for
-#include <libgcc_s.h>
+#include <gnu/lib-names.h>
typedef struct frame_state * (*framesf)(void *pc, struct frame_state *);
struct frame_state *__frame_state_for (void *pc,
diff --git a/sysdeps/generic/libgcc_s.h b/sysdeps/generic/libgcc_s.h
deleted file mode 100644
index e74a1034ca..0000000000
--- a/sysdeps/generic/libgcc_s.h
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Name of libgcc_s library provided by gcc. */
-#define LIBGCC_S_SO "libgcc_s.so.1"
diff --git a/sysdeps/gnu/unwind-resume.c b/sysdeps/gnu/unwind-resume.c
index 1d3e33f7d5..6afaebdaa0 100644
--- a/sysdeps/gnu/unwind-resume.c
+++ b/sysdeps/gnu/unwind-resume.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003-2012 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Jakub Jelinek <jakub@redhat.com>.
@@ -19,7 +19,7 @@
#include <dlfcn.h>
#include <stdio.h>
#include <unwind.h>
-#include <libgcc_s.h>
+#include <gnu/lib-names.h>
static void (*libgcc_s_resume) (struct _Unwind_Exception *exc);
static _Unwind_Reason_Code (*libgcc_s_personality)