From: Mika Raento Date: March 19 2007 7:08pm Subject: configure.in missing AC_CANONICAL_HOST, won't work on OS-X List-Archive: http://lists.mysql.com/ndb-connectors/4 Message-Id: <45FEDFB3.9060105@iki.fi> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Finding headers seems to depend on $host_os being set to a correct value, which it wasn't. The patch below fixes that. Mika --- devel/configure.in 2007-03-19 21:05:24.000000000 +0200 +++ devel-mine/configure.in 2007-03-19 21:04:00.000000000 +0200 @@ -2,6 +2,7 @@ AM_INIT_AUTOMAKE(ndb, 1.0) AC_CHECK_PROGS(SWIG,swig) +AC_CANONICAL_HOST if test "x$SWIG" == "x" ; then AC_MSG_ERROR([Couldn't find swig.])