1
mirror of https://github.com/qbittorrent/qBittorrent synced 2024-07-26 21:56:20 +02:00

Correctly detect FreeBSD when configuring.

Thanks to yurivict for helping.
Closes #2962.
This commit is contained in:
sledgehammer999 2015-05-11 00:25:32 +03:00
parent 4725022f7e
commit fc52248bf7
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -4263,7 +4263,7 @@ fi
# Detect OS
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether OS is FreeBSD" >&5
$as_echo_n "checking whether OS is FreeBSD... " >&6; }
if test "x$host_os" = "x*FreeBSD*"; then :
if expr "$host_os" : ".*freebsd.*" > /dev/null; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
LIBS="-lexecinfo $LIBS"

View File

@ -74,7 +74,7 @@ AC_ARG_ENABLE(qt-dbus,
# Detect OS
AC_MSG_CHECKING([whether OS is FreeBSD])
AS_IF([test "x$host_os" = "x*FreeBSD*"],
AS_IF([expr "$host_os" : ".*freebsd.*" > /dev/null],
[AC_MSG_RESULT([yes])
LIBS="-lexecinfo $LIBS"],
[AC_MSG_RESULT([no])])