diff options
author | B. Watson <yalhcru@gmail.com> | 2020-04-16 03:46:31 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-04-19 10:52:26 +0700 |
commit | 19d735078d7f674a232e21d972fb4c6fd514359a (patch) | |
tree | ec1faf5abbbcee91ed01755795931d302255ebb4 /libraries | |
parent | 1809d53b31e84cd6a5d3d495588bd415d5406d87 (diff) | |
download | slackbuilds-19d735078d7f674a232e21d972fb4c6fd514359a.tar.gz |
libraries/efl: Fix build.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/efl/efl.SlackBuild | 7 |
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} \ |