From 2fc770469e59977069f8f588f8b64d3b72e5cfbe Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 17 Mar 2013 09:24:33 +0000 Subject: [PATCH] Remove not applied patches --- debian/patches/53-lldb-lambda.diff | 27 --------------------------- debian/patches/57-lldb-soname.diff | 21 --------------------- 2 files changed, 48 deletions(-) delete mode 100644 debian/patches/53-lldb-lambda.diff delete mode 100644 debian/patches/57-lldb-soname.diff diff --git a/debian/patches/53-lldb-lambda.diff b/debian/patches/53-lldb-lambda.diff deleted file mode 100644 index 11b9b686..00000000 --- a/debian/patches/53-lldb-lambda.diff +++ /dev/null @@ -1,27 +0,0 @@ -Index: lldb-3.2/lldb/source/Core/cxa_demangle.cpp -=================================================================== ---- lldb-3.2.orig/lldb/source/Core/cxa_demangle.cpp (revision 168834) -+++ lldb-3.2/lldb/source/Core/cxa_demangle.cpp (revision 168835) -@@ -3932,11 +3932,11 @@ - } - }; - --class __lambda -+class __lambda_node - : public __node - { - public: -- __lambda(__node* params, const char *number, size_t number_size) -+ __lambda_node(__node* params, const char *number, size_t number_size) - { - __right_ = params; - __name_ = number; -@@ -7009,7 +7009,7 @@ - return first; - - if (type == 'l') -- __make<__lambda>(__root_, number_start, static_cast(number_end - number_start)); -+ __make<__lambda_node>(__root_, number_start, static_cast(number_end - number_start)); - else - __make<__unnamed>(number_start, static_cast(number_end - number_start)); - diff --git a/debian/patches/57-lldb-soname.diff b/debian/patches/57-lldb-soname.diff deleted file mode 100644 index c1cae205..00000000 --- a/debian/patches/57-lldb-soname.diff +++ /dev/null @@ -1,21 +0,0 @@ -Index: llvm-toolchain-3.2-3.2/lldb/lib/Makefile -=================================================================== ---- llvm-toolchain-3.2-3.2.orig/lldb/lib/Makefile 2013-01-13 09:30:41.000000000 +0100 -+++ llvm-toolchain-3.2-3.2/lldb/lib/Makefile 2013-01-17 18:01:01.000000000 +0100 -@@ -135,7 +135,7 @@ - endif - endif - --ifeq ($(HOST_OS),Linux) -+ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux GNU)) - # Include everything from the .a's into the shared library. - ProjLibsOptions := -Wl,--whole-archive $(ProjLibsOptions) \ - -Wl,--no-whole-archive -@@ -143,6 +143,7 @@ - LLVMLibsOptions += -Wl,--no-undefined - # Link in python - LLVMLibsOptions += $(PYTHON_BUILD_FLAGS) -lrt -+ LLVMLibsOptions += -Wl,--soname,lib$(LIBRARYNAME)$(SHLIBEXT).1 - endif - - ifeq ($(HOST_OS),FreeBSD)