|
|
|
@ -49,14 +49,14 @@ AC_ARG_ENABLE(qt-dbus,
@@ -49,14 +49,14 @@ AC_ARG_ENABLE(qt-dbus,
|
|
|
|
|
|
|
|
|
|
# Detect OS |
|
|
|
|
AC_MSG_CHECKING([whether OS is FreeBSD]) |
|
|
|
|
AS_IF([test "x$host_os" == "x*freebsd*"], |
|
|
|
|
AS_IF([test "x$host_os" = "x*freebsd*"], |
|
|
|
|
[AC_MSG_RESULT([yes]) |
|
|
|
|
LIBS="-lexecinfo $LIBS"], |
|
|
|
|
[AC_MSG_RESULT([no])]) |
|
|
|
|
|
|
|
|
|
# Require 0.26 pkg-config |
|
|
|
|
PKG_PROG_PKG_CONFIG([0.26]) |
|
|
|
|
AS_IF([test "x$PKG_CONFIG" == "x"], |
|
|
|
|
AS_IF([test "x$PKG_CONFIG" = "x"], |
|
|
|
|
[AC_MSG_ERROR([Could not find pkg-config])]) |
|
|
|
|
|
|
|
|
|
# Check which arguments were set and act accordingly |
|
|
|
@ -96,7 +96,7 @@ AS_CASE(["x$with_qt5"],
@@ -96,7 +96,7 @@ AS_CASE(["x$with_qt5"],
|
|
|
|
|
FIND_QT5()], |
|
|
|
|
[AC_MSG_RESULT([$with_qt5]) |
|
|
|
|
AC_MSG_ERROR([Unknown option "$with_qt5". Use either "yes" or "no".])]) |
|
|
|
|
AS_IF([test "x$QT_QMAKE" == "x"], |
|
|
|
|
AS_IF([test "x$QT_QMAKE" = "x"], |
|
|
|
|
[AC_MSG_ERROR([Could not find qmake]) |
|
|
|
|
]) |
|
|
|
|
|
|
|
|
@ -105,7 +105,7 @@ AS_CASE(["x$enable_qt_dbus"],
@@ -105,7 +105,7 @@ AS_CASE(["x$enable_qt_dbus"],
|
|
|
|
|
["xyes"], |
|
|
|
|
[AC_MSG_RESULT([yes]) |
|
|
|
|
FIND_QTDBUS() |
|
|
|
|
AS_IF([test "x$HAVE_QTDBUS" == "xfalse"], |
|
|
|
|
AS_IF([test "x$HAVE_QTDBUS" = "xfalse"], |
|
|
|
|
[AC_MSG_ERROR([Could not find QtDBus])], |
|
|
|
|
[QBT_ADD_CONFIG="$QBT_ADD_CONFIG dbus"] |
|
|
|
|
)], |
|
|
|
@ -119,7 +119,7 @@ AS_CASE(["x$enable_qt_dbus"],
@@ -119,7 +119,7 @@ AS_CASE(["x$enable_qt_dbus"],
|
|
|
|
|
AX_BOOST_BASE([1.35]) |
|
|
|
|
# HAVE_BOOST is set to an empty value when Boost is found. I don't know |
|
|
|
|
# how to test for a set vs unset variable. |
|
|
|
|
AS_IF([test "x$BOOST_CPPFLAGS" == "x"], |
|
|
|
|
AS_IF([test "x$BOOST_CPPFLAGS" = "x"], |
|
|
|
|
[AC_MSG_ERROR([Could not find Boost])], |
|
|
|
|
[AC_MSG_NOTICE([Boost CPPFLGAS: $BOOST_CPPFLAGS]) |
|
|
|
|
CPPFLAGS="$BOOST_CPPFLAGS $CPPFLAGS" |
|
|
|
@ -128,7 +128,7 @@ AS_IF([test "x$BOOST_CPPFLAGS" == "x"],
@@ -128,7 +128,7 @@ AS_IF([test "x$BOOST_CPPFLAGS" == "x"],
|
|
|
|
|
AX_BOOST_SYSTEM() |
|
|
|
|
# HAVE_BOOST_SYSTEM is set to an empty value when Boost.System is found. |
|
|
|
|
# I don't know how to test for a set vs unset variable. |
|
|
|
|
AS_IF([test "x$BOOST_SYSTEM_LIB" == "x"], |
|
|
|
|
AS_IF([test "x$BOOST_SYSTEM_LIB" = "x"], |
|
|
|
|
[AC_MSG_ERROR([Could not find Boost.System])], |
|
|
|
|
[AC_MSG_NOTICE([Boost.System LIB: $BOOST_SYSTEM_LIB]) |
|
|
|
|
LIBS="$BOOST_SYSTEM_LIB $LIBS"]) |
|
|
|
@ -190,7 +190,7 @@ $QT_QMAKE [$CONFDIR]/qbittorrent.pro
@@ -190,7 +190,7 @@ $QT_QMAKE [$CONFDIR]/qbittorrent.pro
|
|
|
|
|
ret="$?" |
|
|
|
|
|
|
|
|
|
AS_ECHO() |
|
|
|
|
AS_IF([test "x$ret" == "x0"], |
|
|
|
|
AS_IF([test "x$ret" = "x0"], |
|
|
|
|
[AC_MSG_NOTICE([Good, your configure finished.])], |
|
|
|
|
[AC_MSG_ERROR([Failed running $QT_QMAKE to generate the makefile])]) |
|
|
|
|
AS_ECHO() |
|
|
|
|