Skip to content

Commit

Permalink
[YottaDB#23] Install libgtmshr.so as a soft link to libyottadb.so for…
Browse files Browse the repository at this point in the history
… backward compatibility purposes
  • Loading branch information
nars1 committed Jan 26, 2018
1 parent b0554a8 commit 242d984
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion sr_unix/configure.gtc
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ fi
$echo " YottaDB Configuration Script"
$echo "Copyright 2009, 2014 Fidelity Information Services, Inc. Use of this"
$echo "software is restricted by the provisions of your license agreement."
$echo "Copyright (c) 2017 YottaDB LLC. and/or its subsidiaries."
$echo "Copyright (c) 2017-2018 YottaDB LLC. and/or its subsidiaries."
$echo "All rights reserved."
$echo ""

Expand Down Expand Up @@ -448,6 +448,14 @@ if [ "$doutf8" -ne 0 ]; then
fi
fi

# Install libgtmshr.so as a soft link to libyottadb.so for backward compatibility purposes just in case
ln -s ./libyottadb$ext $gtmdist/libgtmshr$ext || echo ln -s ./libyottadb$ext $gtmdist/libgtmshr$ext
if [ "$doutf8" -ne 0 ]; then
cd utf8
ln -s ../libgtmshr$ext $gtmdist/utf8/libgtmshr$ext || echo ln -s ../libgtmshr$ext $gtmdist/utf8/libgtmshr$ext
cd ..
fi

# Install COPYING as well as README.md (YottaDB) or README.txt (GT.M) if it is applicable
for file in COPYING README.md README.txt
do
Expand Down

0 comments on commit 242d984

Please sign in to comment.