summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author B. Watson2020-04-16 09:46:31 +0200
committer Willy Sudiarto Raharjo2020-04-19 05:52:26 +0200
commit19d735078d7f674a232e21d972fb4c6fd514359a (patch)
treeec1faf5abbbcee91ed01755795931d302255ebb4
parent1809d53b31e84cd6a5d3d495588bd415d5406d87 (diff)
downloadslackbuilds-19d735078d7f674a232e21d972fb4c6fd514359a.tar.gz
libraries/efl: Fix build.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--libraries/efl/efl.SlackBuild7
1 files changed, 7 insertions, 0 deletions
diff --git a/libraries/efl/efl.SlackBuild b/libraries/efl/efl.SlackBuild
index 356c593ad0..7749d31c32 100644
--- a/libraries/efl/efl.SlackBuild
+++ b/libraries/efl/efl.SlackBuild
@@ -76,8 +76,15 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+# 20200416 bkw: vita_cell on IRC reported missing DSO errors for -lm
+# and -ldl. efl has a LOT of optional/autodetected libraries, I couldn't
+# duplicate his problem, but it looks like some optional library normally
+# adds the -lm -ldl in its pkgconfig file and he was missing whatever
+# it was. In any case, adding them here won't hurt anything.
+
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
+LIBS="-lm -ldl" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \