diff options
author | François Andriot <francois.andriot@thalesgroup.com> | 2023-04-09 19:10:19 +0200 |
---|---|---|
committer | François Andriot <francois.andriot@thalesgroup.com> | 2023-04-09 19:10:19 +0200 |
commit | e4e0bb8ca81d124c50eef496ac020bd789a569e6 (patch) | |
tree | 13210323bbc303723278e1a28ad2bf85253c1856 /smoke/tqt/configure.in.in | |
parent | 7bbf889052c5919833618a10f3618e3820f590a6 (diff) | |
download | tdebindings-r14.1.0.tar.gz tdebindings-r14.1.0.zip |
Fix build when tqscintilla support is enabledr14.1.0
Signed-off-by: François Andriot <francois.andriot@thalesgroup.com>
Diffstat (limited to 'smoke/tqt/configure.in.in')
-rw-r--r-- | smoke/tqt/configure.in.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/smoke/tqt/configure.in.in b/smoke/tqt/configure.in.in index d571b95b..f75c8236 100644 --- a/smoke/tqt/configure.in.in +++ b/smoke/tqt/configure.in.in @@ -47,17 +47,17 @@ AC_CACHE_VAL(ac_cv_lib_qscintilla, kde_libs_save="$LIBS" kde_cxxflags_save="$CXXFLAGS" - LIBS="-lqscintilla $LIBTQT $LIBS" + LIBS="-ltqscintilla $LIBTQT $LIBS" CXXFLAGS="$CXXFLAGS $all_includes" LDFLAGS="$LDFLAGS $all_libraries $USER_LDFLAGS" AC_TRY_LINK([ - #include <qextscintillabase.h> + #include <tqextscintillabase.h> ], [ - QextScintillaBase s; + TQextScintillaBase s; ], - eval "ac_cv_lib_qscintilla='-lqscintilla'", + eval "ac_cv_lib_qscintilla='-ltqscintilla'", eval "ac_cv_lib_qscintilla=no") LDFLAGS=$kde_ldflags_save |