Przeglądaj źródła

Issue 6415 - BUG - Incorrect icu linking (#6416)

Bug Description: ICU has been updated to version 76.x - the .pc file of icu-18n for example no
longer includes -licuuc, which was so far the most common reason for buildfailures (as icu-uc is
not linked automatically, resulting in underlining)

Fix Description: Correct configure.ac to request linking to icu-uc

fixes: https://github.com/389ds/389-ds-base/issues/6415

Author: William Brown <[email protected]>

Review by: @droideck
Firstyear 11 miesięcy temu
rodzic
commit
331016e3a7
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      configure.ac

+ 1 - 1
configure.ac

@@ -849,7 +849,7 @@ fi
 
 PKG_CHECK_MODULES([SASL], [libsasl2])
 
-PKG_CHECK_MODULES([ICU], [icu-i18n >= 60.2])
+PKG_CHECK_MODULES([ICU], [icu-i18n >= 60.2 icu-uc >= 60.2])
 
 m4_include(m4/netsnmp.m4)