Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libmpc: version bumped to 1.0.1. #133

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 13 additions & 2 deletions libs/libmpc/BUILD
@@ -1,7 +1,18 @@
(

OPTS+=" --disable-static" &&
OPTS+=" --disable-static" &&

default_build
if [ -f /usr/lib/libmpc.so.2.0.0 ]; then
# preserve the old version to prevent the crash of gcc
cp /usr/lib/libmpc.so.2.0.0 /usr/lib/libmpc.so.2.0.0.old
fi &&

default_build &&

if [ -f /usr/lib/libmpc.so.2.0.0.old ]; then
# restore the old version to prevent the crash of gcc
mv -f /usr/lib/libmpc.so.2.0.0.old /usr/lib/libmpc.so.2.0.0
ln -sf /usr/lib/libmpc.so.2.0.0 /usr/lib/libmpc.so.2
fi

) > $C_FIFO 2>&1
6 changes: 3 additions & 3 deletions libs/libmpc/DETAILS
@@ -1,12 +1,12 @@
MODULE=libmpc
VERSION=0.8.2
VERSION=1.0.1
SOURCE=mpc-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/mpc-$VERSION
SOURCE_URL=http://www.multiprecision.org/mpc/download
SOURCE_VFY=sha1:339550cedfb013b68749cd47250cd26163b9edd4
SOURCE_VFY=sha1:8c7e19ad0dd9b3b5cc652273403423d6cf0c5edf
WEB_SITE=http://www.multiprecision.org
ENTERED=20100416
UPDATED=20100619
UPDATED=20120908
SHORT="A complex floating-point library"

cat << EOF
Expand Down