1
mirror of https://github.com/qbittorrent/qBittorrent synced 2024-10-03 09:27:32 +02:00

Migrate away from deprecated AC_OUTPUT macro

The `AC_OUTPUT` has two versions, the deprecated one takes arguments and the other not. Check the
following link for equivalent replacement:
https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.70/html_node/Obsolete-Macros.html#Obsolete-Macros

Also regenerate the configure script with the latest Autoconf 2.70.
This commit is contained in:
Chocobo1 2020-12-30 00:54:41 +08:00
parent cfb55d9d77
commit 5209b0172b
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
2 changed files with 2304 additions and 2560 deletions

4856
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -272,9 +272,13 @@ AC_SUBST(QBT_REMOVE_CONFIG)
AC_SUBST(QBT_ADD_DEFINES)
AC_SUBST(QBT_REMOVE_DEFINES)
AC_OUTPUT(conf.pri)
QBT_CONFIG_FILES="conf.pri"
AS_IF([test "x$enable_systemd" = "xyes"],
[AC_OUTPUT(dist/unix/systemd/qbittorrent-nox@.service)])
[QBT_CONFIG_FILES="$QBT_CONFIG_FILES dist/unix/systemd/qbittorrent-nox@.service"])
AC_CONFIG_FILES(["$QBT_CONFIG_FILES"])
AC_OUTPUT
AC_MSG_NOTICE([Running qmake to generate the makefile...])
TOPDIR="$(cd "$(dirname "$0")" && pwd)"