]> git.pld-linux.org Git - packages/pilot-link.git/blob - pilot-link-configure.patch
- patch for enable iconv support
[packages/pilot-link.git] / pilot-link-configure.patch
1 diff -Nur pilot-link-0.11.6-orig/configure.in pilot-link-0.11.6/configure.in
2 --- pilot-link-0.11.6-orig/configure.in Wed Dec 25 02:46:13 2002
3 +++ pilot-link-0.11.6/configure.in      Thu Jan 16 13:48:36 2003
4 @@ -246,13 +246,13 @@
5  
6         cd = iconv_open ("UTF-8", "CP1252");
7         if (!cd)
8 -               exit 1
9 +                { exit(1); }
10         if (iconv (cd, &pc, &pc_len, &trans, &utf8_len) == -1 || pc_len != 0)
11 -               exit 1
12 +               { exit(1); }
13         if (memcmp (utf8, transbuf, utf8_real_len) != 0)
14 -               exit 1
15 +               { exit(1); }
16  
17 -       exit 0
18 +       exit(0);
19  }], AC_MSG_RESULT(yes); have_iconv=yes, [AC_MSG_RESULT(no);], AC_MSG_RESULT(not cross compiling);)])])
20  
21  dnl ##  Fixed AC_TRY_RUN warning, missing third argument. -DD 22/01/2002
This page took 0.021068 seconds and 3 git commands to generate.