Morten Nilsen wrote:
Phuah Yee Keat wrote:

Morten Nilsen wrote:

configure says there is no X11/X.h file...
adding --x-includes/--x-libraries to configure has no effect...
symlinking /usr/X11R6/include/*/ to /usr/include, like stated, makes configure see the headers...

A copy of the output from configure will be more helpful. And config.log if possible.

Can you try applying this patch to the configure.in file inside evas and do a autogen.sh and configure again?

Cheers,
Phuah Yee Keat
--- configure.in.old    2005-10-20 16:14:00.000000000 +0800
+++ configure.in        2005-11-10 14:01:27.000000000 +0800
@@ -128,6 +128,7 @@
 have_evas_software_x11="no";
 ENGINE_SOFTWARE_X11_PRG="";
 ## Automatic check...
+AC_PATH_XTRA
 AC_CHECK_HEADER(X11/X.h,
   [ have_evas_software_x11="yes" ],
   [ have_evas_software_x11="no" ]
@@ -147,7 +148,6 @@
        ]
 )
 if test "x$have_evas_software_x11" = "xyes"; then
-  AC_PATH_XTRA
   AC_CHECK_HEADER(X11/X.h,
     [
       AM_CONDITIONAL(BUILD_ENGINE_SOFTWARE_X11, true)
@@ -203,8 +203,6 @@
        ]
 )
 if test "x$have_evas_software_xcb" = "xyes"; then
-  AC_PATH_XTRA
-
   PKG_CHECK_MODULES(
     XCB_ICCCM,
     xcb-icccm)
@@ -535,7 +533,6 @@
        ]
 )
 if test "x$have_evas_xrender_x11" = "xyes"; then
-  AC_PATH_XTRA
   AC_CHECK_HEADER(X11/X.h,
     [
       AC_CHECK_HEADER(X11/extensions/Xrender.h,

Reply via email to