From 86cbe89e4e7556657bde667165583dafe5424b4a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 21 Jun 2015 19:46:32 +0100 Subject: [PATCH] Added SDL --- functions/fn_deps_detect | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/functions/fn_deps_detect b/functions/fn_deps_detect index fdfcae17b..4bfa6258c 100644 --- a/functions/fn_deps_detect +++ b/functions/fn_deps_detect @@ -2,7 +2,7 @@ # LGSM fn_dep_detect function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 200615 +# Version: 210615 # Description: Detects dependencies the server binary requires. @@ -55,11 +55,17 @@ while read lib; do echo "compat-libstdc++-33.i686" >> "${rootdir}/.depdetect_centos_list" echo "libstdc++5:i386" >> "${rootdir}/.depdetect_ubuntu_list" echo "libstdc++5:i386" >> "${rootdir}/.depdetect_debian_list" + elif [ "${lib}" == "libspeex.so.1" ]||[ "${lib}" == "libspeexdsp.so.1" ];then echo "speex.i686" >> "${rootdir}/.depdetect_centos_list" echo "speex:i386" >> "${rootdir}/.depdetect_ubuntu_list" echo "speex:i386" >> "${rootdir}/.depdetect_debian_list" + elif [ "${lib}" == "./libSDL-1.2.so.0" ]||[ "${lib}" == "libSDL-1.2.so.0" ];then + echo "SDL.i686" >> "${rootdir}/.depdetect_centos_list" + echo "libsdl1.2debian" >> "${rootdir}/.depdetect_ubuntu_list" + echo "libsdl1.2debian" >> "${rootdir}/.depdetect_debian_list" + elif [ "${lib}" == "libtier0.so" ]||[ "${lib}" == "Core.so" ]||[ "${lib}" == "Editor.so" ]||[ "${lib}" == "Engine.so" ]||[ "${lib}" == "liblua.so" ]||[ "${lib}" == "libsteam_api.so" ]||[ "${lib}" == "ld-linux-x86-64.so.2" ];then # Known shared libs what dont requires dependencies :