diff options
author | Slávek Banko <[email protected]> | 2018-05-01 11:55:22 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-05-01 11:55:33 +0200 |
commit | d366d7ef98b4ee16eae2ce4c012ed13d3065cc1d (patch) | |
tree | f6539017e4ee96b089fac58ad75aaedc3572ee02 | |
parent | 7b3cdd9d7d18b6a984afa8c01ee8220847c246f2 (diff) | |
download | kipi-plugins-d366d7ef98b4ee16eae2ce4c012ed13d3065cc1d.tar.gz kipi-plugins-d366d7ef98b4ee16eae2ce4c012ed13d3065cc1d.zip |
Fix FTBFS with ICU >= 58
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 395bf69ad4588f4e5be43f027703476433e61502)
-rw-r--r-- | kipi-plugins/configure.in.in | 24 | ||||
-rw-r--r-- | kipi-plugins/htmlexport/Makefile.am | 1 |
2 files changed, 25 insertions, 0 deletions
diff --git a/kipi-plugins/configure.in.in b/kipi-plugins/configure.in.in index 7dc03ec..ec887b7 100644 --- a/kipi-plugins/configure.in.in +++ b/kipi-plugins/configure.in.in @@ -103,6 +103,30 @@ fi # -------------------------------------------------------------------- # +# Check for ICU CXXFLAGS +# +# -------------------------------------------------------------------- +KDE_FIND_PATH(pkg-config, PKGCONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/bin /usr/local/bin /opt/local/bin], [ + AC_MSG_WARN([Could not find pkg-config]) +]) +if test -n "$PKGCONFIG"; then + ICU_VERSION=`$PKGCONFIG icu-uc --modversion 2>/dev/null` + if test -n "$ICU_VERSION"; then + ICU_CXXFLAGS=`$PKGCONFIG icu-uc --variable=CXXFLAGS` + fi +fi +if test -z "$ICU_VERSION"; then + KDE_FIND_PATH(icu-config, ICU_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [ + AC_MSG_WARN([Could not find icu-config]) + ]) + if test -n "$ICU_CONFIG"; then + ICU_CXXFLAGS=`$ICU_CONFIG --cxxflags` + fi +fi +AC_SUBST(ICU_CXXFLAGS) + +# -------------------------------------------------------------------- +# # Check for libkexiv2 # # -------------------------------------------------------------------- diff --git a/kipi-plugins/htmlexport/Makefile.am b/kipi-plugins/htmlexport/Makefile.am index 65dc6e3..6221e1e 100644 --- a/kipi-plugins/htmlexport/Makefile.am +++ b/kipi-plugins/htmlexport/Makefile.am @@ -1,5 +1,6 @@ SUBDIRS = themes INCLUDES = $(KIPI_PLUGINS_COMMON_INCLUDE) $(LIBKIPI_CFLAGS) $(all_includes) $(LIBXSLT_CFLAGS) +CXXFLAGS += $(ICU_CXXFLAGS) METASOURCES = AUTO |