diff options
author | aneejit1 <aneejit1@gmail.com> | 2020-06-22 19:23:58 +0000 |
---|---|---|
committer | aneejit1 <aneejit1@gmail.com> | 2020-06-22 22:25:21 +0000 |
commit | ae96f3ea4882e243513827da7c2ab889af3b1608 (patch) | |
tree | fa7d54b7c92f31f918b0133d9e5217756b73cf90 | |
parent | 3e80abcba548f353276a4f3088f9e0bb6295039c (diff) | |
download | admin-ae96f3ea4882e243513827da7c2ab889af3b1608.tar.gz admin-ae96f3ea4882e243513827da7c2ab889af3b1608.zip |
Allow TQt3 includes to exist somewhere other than /usr/include/tqt
The test for TQt3 fails when it's not installed in /usr due to CXXFLAGS being hardcoded to /usr/include/tqt. Amended to append to CXXFLAGS.
Signed-off-by: aneejit1 <aneejit1@gmail.com>
-rw-r--r-- | acinclude.m4.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4.in b/acinclude.m4.in index 4a2ccfe..548c366 100644 --- a/acinclude.m4.in +++ b/acinclude.m4.in @@ -1087,7 +1087,7 @@ AC_DEFUN([KDE_USE_TQT], AC_LANG_SAVE AC_LANG_CPLUSPLUS ac_cxxflags_safe="$CXXFLAGS" - CXXFLAGS="-I/usr/include/tqt" + CXXFLAGS="$CXXFLAGS -I/usr/include/tqt" AC_TRY_COMPILE([ #define TQT_VERSION_ONLY #include <tqt.h> |