aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/beecrypt/beecrypt/disable-icu-check.patch
blob: 91b1fa6ef578d9b758410b5fb054a2437ad19402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
We are unable to run code at configure time in a cross environemnt, but as we
control the build we can be fairly certain this dependency is met.

Upstream-Status: Inappropriate [embedded specific]

JL 05/07/10
Index: beecrypt-4.2.1/configure.ac
===================================================================
--- beecrypt-4.2.1.orig/configure.ac	2010-11-26 17:12:25.000000000 +0800
+++ beecrypt-4.2.1/configure.ac	2010-11-26 17:12:30.000000000 +0800
@@ -292,32 +292,6 @@
 # Predefines and checks for C++ API support
 AH_TEMPLATE([CPPGLUE],[Define to 1 if you want to include the C++ code])
 
-if test "$ac_with_cplusplus" = yes; then
-  AC_MSG_CHECKING([for IBM's ICU library version >= 2.8])
-  AC_LANG_PUSH(C)
-  AC_RUN_IFELSE([
-    AC_LANG_PROGRAM([[#include <unicode/uversion.h>]],[[
-      #if U_ICU_VERSION_MAJOR_NUM < 2
-      exit(1);
-      #elif U_ICU_VERSION_MAJOR_NUM == 2
-      # if U_ICU_VERSION_MINOR_NUM < 8
-      exit(1);
-      # else
-      exit(0);
-      # endif
-      #else
-      exit(0);
-      #endif
-    ]])],[
-    AC_MSG_RESULT([yes])
-    ],[
-    AC_MSG_RESULT([no])
-    AC_MSG_WARN([disabling cplusplus])
-    ac_with_cplusplus=no
-    ])
-  AC_LANG_POP(C)
-fi
-
 AM_CONDITIONAL([WITH_CPLUSPLUS],[test "$ac_with_cplusplus" = yes])
 
 if test "$ac_with_cplusplus" = yes ; then