Browse Source

Merge pull request #14035 from Chocobo1/autotools

Don't use default CFLAGS, CXXFLAGS from autotools
adaptive-webui-19844
Mike Tzou 4 years ago committed by GitHub
parent
commit
02e85913da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      configure
  2. 2
      configure.ac

2
configure vendored

@ -2026,6 +2026,8 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. @@ -2026,6 +2026,8 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
: ${CFLAGS=""}
: ${CXXFLAGS=""}
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'

2
configure.ac

@ -1,6 +1,8 @@ @@ -1,6 +1,8 @@
AC_INIT([qbittorrent], [v4.4.0alpha], [bugs.qbittorrent.org], [], [https://www.qbittorrent.org/])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
: ${CFLAGS=""}
: ${CXXFLAGS=""}
AC_PROG_CC
AC_PROG_CXX
AC_PROG_SED

Loading…
Cancel
Save