mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
configure: Remove unused OS and architecture detection that would most likely fail on systems without gcc
This commit is contained in:
parent
ae9e01acd8
commit
37d1497aed
1 changed files with 0 additions and 29 deletions
29
configure
vendored
29
configure
vendored
|
@ -506,34 +506,6 @@ then
|
|||
fi
|
||||
fi
|
||||
|
||||
echo_n "Configuring for system... "
|
||||
if uname -s
|
||||
then
|
||||
UNAME_S=`uname -s`
|
||||
else
|
||||
die "Could not determine operating system. 'uname -s' failed."
|
||||
fi
|
||||
echo_n "Configuring for architecture... "
|
||||
if uname -m
|
||||
then
|
||||
UNAME_M=`uname -m`
|
||||
else
|
||||
die "Could not determine processor architecture. 'uname -m' failed."
|
||||
fi
|
||||
|
||||
if [ "$UNAME_S" = Linux ]
|
||||
then
|
||||
GCC_ARCH=`gcc -print-multiarch 2>/dev/null`
|
||||
if [ -n "$GCC_ARCH" -a -d "/usr/lib/$GCC_ARCH" ]
|
||||
then
|
||||
MULTIARCH_SUBDIR="lib/$GCC_ARCH"
|
||||
elif [ -d "/usr/lib64" ]
|
||||
then
|
||||
# Useful for Fedora systems
|
||||
MULTIARCH_SUBDIR="lib64"
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$IDN_LIBRARY" = "icu" ]
|
||||
then
|
||||
IDNA_LIBS="$ICU_FLAGS"
|
||||
|
@ -579,7 +551,6 @@ LUA_DIR_SET=$LUA_DIR_SET
|
|||
LUA_INCDIR=$LUA_INCDIR
|
||||
LUA_LIBDIR=$LUA_LIBDIR
|
||||
LUA_BINDIR=$LUA_BINDIR
|
||||
MULTIARCH_SUBDIR=$MULTIARCH_SUBDIR
|
||||
IDN_LIB=$IDN_LIB
|
||||
IDNA_LIBS=$IDNA_LIBS
|
||||
OPENSSL_LIBS=$OPENSSL_LIBS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue