On Thursday, December 6, 2012, Enlightenment SVN wrote:

> Log:
> without this i end up with a configure that does:
>
>   configure: updating cache config.cache
>   configure: creating ./config.status
>   config.status: error: cannot find input file: Makefile.in'
>   make: *** No targets specified and no makefile found.  Stop.


Sorry, Dorileo GOT the proper fix, was a missing [1] parameter after the
[test ...] in the AC_DEFINE_IF()





>   autoheader is unhappy:
>
>   autoreconf: running: /usr/bin/autoconf --force
>   autoreconf: running: /usr/bin/autoheader --force
>   autoheader: warning: missing template: HAVE_NOTIFY_WIN32
>   autoheader: Use AC_DEFINE([HAVE_NOTIFY_WIN32], [], [Description])
>   autoreconf: /usr/bin/autoheader failed with exit status: 1
>
>
>
> Author:       raster
> Date:         2012-12-06 08:08:07 -0800 (Thu, 06 Dec 2012)
> New Revision: 80368
> Trac:         http://trac.enlightenment.org/e/changeset/80368
>
> Modified:
>   trunk/efl/configure.ac
>
> Modified: trunk/efl/configure.ac
> ===================================================================
> --- trunk/efl/configure.ac      2012-12-06 14:46:32 UTC (rev 80367)
> +++ trunk/efl/configure.ac      2012-12-06 16:08:07 UTC (rev 80368)
> @@ -479,9 +479,11 @@
>  AM_CONDITIONAL([HAVE_INOTIFY], [test "x${have_inotify}" = "xyes"])
>
>  have_notify_win32="${have_win32}"
> -AC_DEFINE_IF([HAVE_NOTIFY_WIN32],
> -   [test "x${have_notify_win32}" = "xyes"],
> -   [File monitoring with Windows notification])
> +if test "x${have_notify_win32}" = "xyes" ; then
> +  AC_DEFINE([HAVE_NOTIFY_WIN32], [1], [File monitoring with Windows
> notification])
> +else
> +  AC_DEFINE([HAVE_NOTIFY_WIN32], [], [File monitoring with Windows
> notification])
> +fi
>  AM_CONDITIONAL([HAVE_NOTIFY_WIN32], [test "x${have_notify_win32}" =
> "xyes"])
>
>
>
>
>
> ------------------------------------------------------------------------------
> LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
> Remotely access PCs and mobile devices and provide instant support
> Improve your efficiency, and focus on delivering more value-add services
> Discover what IT Professionals Know. Rescue delivers
> http://p.sf.net/sfu/logmein_12329d2d
> _______________________________________________
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net <javascript:;>
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>


-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--------------------------------------
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202
------------------------------------------------------------------------------
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to