Hi Maho, Eric,
On 19.03.2005, at 17:07, Eric Hoch wrote:
Hi Maho, Am Sun, 20 Mar 2005 00:37:38 +0900 (JST), schrieb NAKATA Maho:[...]Dear Rene,
m87 fails like: --------------- checking for ANSI C header files... yes checking fontconfig/fontconfig.h usability... no checking fontconfig/fontconfig.h presence... no checking for fontconfig/fontconfig.h... no configure: error: fontconfig/fontconfig.h could not be found. libfontconfig1-dev or fontconfig???-devel missing? ===> Script "configure" failed unexpectedly.
okay, just missing include dir for configure process. --------------- config_office/configure.in
dnl ===================================================================
dnl Check if fontconfig/fontconfig.h is available
dnl ===================================================================
if test "$ENABLE_FONTCONFIG" = "TRUE" ; then
AC_CHECK_HEADER(fontconfig/fontconfig.h, [],
[AC_MSG_ERROR([fontconfig/fontconfig.h could
not be found. libfontconfig1-dev or fontconfig???-devel
missing?])], [])
fi
---------------
and
configure:5254: checking fontconfig/fontconfig.h usability configure:5266: ccache gcc-ooo -c -O -pipe conftest.c >&5 conftest.c:44:35: fontconfig/fontconfig.h: No such file or directory configure:5272: $? = 1
--------------- what I would like to do is adding include dir -I/usr/X11R6/include for this part, since there exits /usr/X11R6/include/fontconfig/fontconfig.h there are such kind of part in configure (and also Mac OS X).
You can do a link to /usr/X11R6/include/fontconfig in /usr/include/ to make the configure script work:In the meantime I've you have an idea on how to let the configure script recognize /usr/X11R6/include/fontconfig/fontconfig.h let me know otherwise -disabel-fontconfig currently is the best best solution I know.
ln -s /usr/X11R6/include/fontconfig /usr/include/fontconfig
Though this should only be a workaround.
Best regards, Florian
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
