freeciv: Add openssl dependency

This commit is contained in:
Jeremy Soller 2018-12-30 11:06:48 -07:00
parent 649e1c70f8
commit 864587540f
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -1,6 +1,6 @@
VERSION=2.6.0
TAR=http://files.freeciv.org/stable/freeciv-$VERSION.tar.bz2
BUILD_DEPENDS=(curl freetype libiconv liborbital libpng sdl sdl_gfx sdl_image sdl_mixer sdl_ttf zlib)
BUILD_DEPENDS=(curl freetype libiconv liborbital libpng openssl sdl sdl_gfx sdl_image sdl_mixer sdl_ttf zlib)
function recipe_version {
echo "$VERSION"
@ -17,7 +17,7 @@ function recipe_build {
sysroot="$(realpath ../sysroot)"
export CFLAGS="-I$sysroot/include"
export LDFLAGS="-L$sysroot/lib"
export LIBS="-lpthread"
export LIBS="-Wl,--whole-archive -lpthread -Wl,--no-whole-archive"
./configure \
--host="$HOST" \
--prefix='' \