New snapshot release

This commit is contained in:
Sylvestre Ledru 2013-08-26 06:37:04 +00:00
commit dcaf252476
3 changed files with 24 additions and 3 deletions

9
debian/changelog vendored
View File

@ -8,9 +8,14 @@ llvm-toolchain-snapshot (1:3.4~svn188990-2) UNRELEASED; urgency=low
llvm-toolchain-snapshot (1:3.4~svn188990-1) unstable; urgency=low llvm-toolchain-snapshot (1:3.4~svn188990-1) unstable; urgency=low
* New snapshot release * New snapshot release
* Refresh of the patches
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 22 Aug 2013 09:01:38 +0200 -- Sylvestre Ledru <sylvestre@debian.org> Sun, 25 Aug 2013 23:13:16 +0200
llvm-toolchain-snapshot (1:3.4~svn189092-1) unstable; urgency=low
* New snapshot release
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 23 Aug 2013 10:08:14 +0200
llvm-toolchain-3.3 (1:3.3-7) unstable; urgency=low llvm-toolchain-3.3 (1:3.3-7) unstable; urgency=low

16
debian/patches/hurd-pathmax.diff vendored Normal file
View File

@ -0,0 +1,16 @@
Index: llvm-toolchain-3.3-3.3/clang/lib/Basic/FileManager.cpp
===================================================================
--- llvm-toolchain-3.3-3.3.orig/clang/lib/Basic/FileManager.cpp 2013-01-26 17:29:36.000000000 +0100
+++ llvm-toolchain-3.3-3.3/clang/lib/Basic/FileManager.cpp 2013-08-23 09:53:21.538337851 +0200
@@ -43,6 +43,11 @@
#if defined(LLVM_ON_UNIX)
#include <limits.h>
#endif
+// For GNU Hurd
+#if defined(__GNU__) && !defined(PATH_MAX)
+# define PATH_MAX 4096
+#endif
+
using namespace clang;
// FIXME: Enhance libsystem to support inode and other fields.

View File

@ -25,4 +25,4 @@ kfreebsd.diff
mipsel-ftbfs.diff mipsel-ftbfs.diff
disable-execinfo-usage.diff disable-execinfo-usage.diff
unwind-chain-inclusion.diff unwind-chain-inclusion.diff
hurd-pathmax.diff