32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
|
From 688b6c45faa0b7890e8b1d9d709a82b98a47f94f Mon Sep 17 00:00:00 2001
|
||
|
From: Kshitij Kulshreshtha <kshitij@math.upb.de>
|
||
|
Date: Fri, 15 Aug 2014 12:25:20 +0200
|
||
|
Subject: [PATCH] The ABI seems to have been broken, change library version
|
||
|
|
||
|
The old library libadolc.so.1.1.1 seems to have conflicts
|
||
|
with the new library version libadolc.so.1.2.0 So increase
|
||
|
the major version. After this the new library will be
|
||
|
libadolc.so.2.1.0
|
||
|
|
||
|
Signed-off-by: Kshitij Kulshreshtha <kshitij@math.upb.de>
|
||
|
---
|
||
|
ADOL-C/Makefile.am | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/ADOL-C/Makefile.am b/ADOL-C/Makefile.am
|
||
|
index d8fb591..622f6e4 100644
|
||
|
--- a/ADOL-C/Makefile.am
|
||
|
+++ b/ADOL-C/Makefile.am
|
||
|
@@ -31,7 +31,7 @@ SUBDIRS += include
|
||
|
MAINTAINERCLEANFILES = Makefile.in
|
||
|
|
||
|
lib_LTLIBRARIES = lib@adolclib@.la
|
||
|
-lib@adolclib@_la_LDFLAGS = -version-info 3:0:2 -no-undefined
|
||
|
+lib@adolclib@_la_LDFLAGS = -version-info 3:0:1 -no-undefined
|
||
|
lib@adolclib@_la_SOURCES = dummy.cpp
|
||
|
|
||
|
lib@adolclib@_la_LIBADD = src/libadolcsrc.la
|
||
|
--
|
||
|
2.0.1
|
||
|
|