diff options
| author | Sam Varshavchik | 2022-05-22 14:09:30 -0400 |
|---|---|---|
| committer | Sam Varshavchik | 2022-05-22 14:09:30 -0400 |
| commit | 1ce81fa6af52651628a0bffcd8b15fdb459901a5 (patch) | |
| tree | 189b961f29e3f0de98572bb8edbf6499cb6b382f | |
| parent | ac1eba1d2cd22e62b24b963028f2cd623b1ab1da (diff) | |
| download | courier-libs-1ce81fa6af52651628a0bffcd8b15fdb459901a5.tar.bz2 | |
Additional autotools updates.
| -rw-r--r-- | unicode/courier-unicode-version.m4.in | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/unicode/courier-unicode-version.m4.in b/unicode/courier-unicode-version.m4.in index b9226d4..272d3ce 100644 --- a/unicode/courier-unicode-version.m4.in +++ b/unicode/courier-unicode-version.m4.in @@ -33,22 +33,21 @@ then fi fi -AC_TRY_COMPILE([ +AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <courier-unicode.h> #ifndef COURIER_UNICODE_VERSION #define COURIER_UNICODE_VERSION 0 #endif -#if COURIER_UNICODE_VERSION < ]$v$r$p[ -#error "courier-unicode ]$vers[ library is required" +#if COURIER_UNICODE_VERSION < $v$r$p +#error "courier-unicode $vers library is required" #endif -],[],[], -AC_MSG_ERROR([ -ERROR: The Courier Unicode Library ]$vers[ header files appear not to be installed. +]], [[]])],[],[AC_MSG_ERROR( +ERROR: The Courier Unicode Library $vers header files appear not to be installed. You may need to upgrade the library or install a separate development -subpackage in addition to the main package.]) -) +subpackage in addition to the main package.) +]) AC_MSG_RESULT([ok]) ]) |
