From 6ca2a421b0eade1758eb598dd8edcf55832f2794 Mon Sep 17 00:00:00 2001 From: "H.Merijn Brand" Date: Mon, 2 Sep 2013 19:01:31 +0200 Subject: [PATCH] With symlinks in /lib m and crypt are are no longer exceptions Configure will only look for libfoo.so. If libfoo.so.{num} exists and libfoo.so does not, make a symbolic link and start over. For this Synology DS213, I needed # cd /lib # ln -s libm.so.6 libm.so # ln -s libcrypt.so.1 libcrypt.so --- hints/linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hints/linux.sh b/hints/linux.sh index 8300a47..1ac42c0 100644 --- a/hints/linux.sh +++ b/hints/linux.sh @@ -385,7 +385,7 @@ case "`uname -m`" in libspth="/opt/local/lib /opt/lib $libspth" loclibpth="/opt/local/lib /opt/lib $loclibpth" # POSIX will not link without the pthread lib - libswanted="$libswanted pthread m crypt" + libswanted="$libswanted pthread" echo "$libswanted" >&4 fi ;; -- 2.7.4