gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
640 B
20 lines
640 B
#!/bin/bash
|
|
# LGSM fix_glibc.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: http://gameservermanagers.com
|
|
lgsm_version="020116"
|
|
|
|
info_glibc.sh
|
|
|
|
if [ "$(printf '%s\n$glibc_required\n' $glibc_version | sort -V | head -n 1)" != "${glibc_required}" ]; then
|
|
echo "Version $(ldd --version | sed -n '1s/.* //p') is lower than $glibc_required"
|
|
if [ "${glibcfix}" == "yes" ]; then
|
|
echo "applied glibc fix"
|
|
echo "export LD_LIBRARY_PATH=:"${lgsmdir}/lib/ubuntu12.04/i386""
|
|
export LD_LIBRARY_PATH=:"${lgsmdir}/lib/ubuntu12.04/i386"
|
|
else
|
|
echo "no glibc fix available you need to upgrade bro!!"
|
|
fi
|
|
else
|
|
echo "GLIBC is OK no fix required"
|
|
fi
|