* Fix my screw up. Add .1 to the libclang soname to make

dpkg-shlibdeps happy
* Remove useless dependency on doxygen
This commit is contained in:
Sylvestre Ledru 2014-09-27 06:18:52 +00:00
parent e46b78714c
commit 466ff3cf54
3 changed files with 10 additions and 2 deletions

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
llvm-toolchain-snapshot (1:3.6~svn218446-2) unstable; urgency=medium
* Fix my screw up. Add .1 to the libclang soname to make
dpkg-shlibdeps happy
* Remove useless dependency on doxygen
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 26 Sep 2014 17:05:26 +0200
llvm-toolchain-snapshot (1:3.6~svn218446-1) unstable; urgency=medium
* New snapshot release

2
debian/control vendored
View File

@ -4,7 +4,7 @@ Priority: optional
Maintainer: LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Uploaders: Sylvestre Ledru <sylvestre@debian.org>
Build-Depends: debhelper (>= 9.0), flex, bison, dejagnu, tcl, expect,
autoconf, automake, perl, libtool, doxygen, chrpath, texinfo,
autoconf, automake, perl, libtool, chrpath, texinfo,
sharutils, autotools-dev (>= 20060702.1), libffi-dev (>= 3.0.9),
lsb-release, patchutils, diffstat, xz-utils, chrpath, python-dev,
libedit-dev, swig, python-sphinx, ocaml-nox, binutils-dev, libcloog-isl-dev,

View File

@ -15,7 +15,7 @@ Index: llvm-toolchain-snapshot_3.6~svn214630/clang/tools/libclang/Makefile
# Add soname to the library.
ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux FreeBSD GNU GNU/kFreeBSD))
- LLVMLibsOptions += -Wl,-soname,lib$(LIBRARYNAME)$(SHLIBEXT)
+ LLVMLibsOptions += -Wl,-soname,lib$(LIBRARYNAME)-$(LLVM_VERSION_MAJOR).$(LLVM_VERSION_MINOR)$(SHLIBEXT)
+ LLVMLibsOptions += -Wl,-soname,lib$(LIBRARYNAME)-$(LLVM_VERSION_MAJOR).$(LLVM_VERSION_MINOR)$(SHLIBEXT).$(SONAME_MAJOR)
endif
ifeq ($(ENABLE_CLANG_ARCMT),1)