]> git.pld-linux.org Git - packages/fontforge.git/blob - fontforge-iconv-in-libc.patch
- prefer iconv() from libc
[packages/fontforge.git] / fontforge-iconv-in-libc.patch
1 --- fontforge-20040418/configure.in.orig        2004-04-25 19:28:49.000000000 +0200
2 +++ fontforge-20040418/configure.in     2004-04-25 19:33:58.763255336 +0200
3 @@ -47,7 +47,7 @@
4  \r
5  AC_SEARCH_LIBS(dlopen, dl) dnl some systems have this in libc (Darwin uses dyld)\r
6  AC_SEARCH_LIBS(inet_aton, resolv) dnl some systems have this in libc\r
7 -AC_SEARCH_LIBS(libiconv, iconv) dnl linux has iconv in libc, mac,solaris have libiconv in libiconv, and a define to map iconv() to libiconv(), so we can't do the obvious check\r
8 +AC_CHECK_FUNC([iconv],,[AC_SEARCH_LIBS(libiconv, iconv)]) dnl linux has iconv in libc, mac,solaris have libiconv in libiconv, and a define to map iconv() to libiconv(), so we can't do the obvious check\r
9  \r
10  dnl Is there a better way to add a directory to the include path?\r
11  \r
This page took 0.184729 seconds and 3 git commands to generate.