On Sun, 10 Jul 2011, Enlightenment SVN wrote:
> Log: > elementary: elementary_config.h is a local include as -I$(top_builddir) is passed to CPPFLAGS, it's the same... Vincent > > Using #include <elementary_config.h> will fail if > elementary has never been installed. > > Signed-off-by: Mike McCormack <[email protected]> > > Author: mike_m > Date: 2011-07-10 18:22:19 -0700 (Sun, 10 Jul 2011) > New Revision: 61220 > Trac: http://trac.enlightenment.org/e/changeset/61220 > > Modified: > trunk/elementary/src/bin/test_hover.c > trunk/elementary/src/bin/test_slideshow.c > trunk/elementary/src/lib/elc_fileselector.c trunk/elementary/src/lib/elm_map.c > > Modified: trunk/elementary/src/bin/test_hover.c > =================================================================== > --- trunk/elementary/src/bin/test_hover.c 2011-07-11 01:22:09 UTC (rev > 61219) > +++ trunk/elementary/src/bin/test_hover.c 2011-07-11 01:22:19 UTC (rev > 61220) > @@ -1,5 +1,5 @@ > #include <Elementary.h> > -#include <elementary_config.h> > +#include "elementary_config.h" > #ifndef ELM_LIB_QUICKLAUNCH > static void > my_hover_bt(void *data, Evas_Object *obj __UNUSED__, void *event_info > __UNUSED__) > > Modified: trunk/elementary/src/bin/test_slideshow.c > =================================================================== > --- trunk/elementary/src/bin/test_slideshow.c 2011-07-11 01:22:09 UTC (rev > 61219) > +++ trunk/elementary/src/bin/test_slideshow.c 2011-07-11 01:22:19 UTC (rev > 61220) > @@ -1,5 +1,5 @@ > #include <Elementary.h> > -#include <elementary_config.h> > +#include "elementary_config.h" > #ifndef ELM_LIB_QUICKLAUNCH > > static Evas_Object *slideshow, *bt_start, *bt_stop; > > Modified: trunk/elementary/src/lib/elc_fileselector.c > =================================================================== > --- trunk/elementary/src/lib/elc_fileselector.c 2011-07-11 01:22:09 UTC > (rev 61219) > +++ trunk/elementary/src/lib/elc_fileselector.c 2011-07-11 01:22:19 UTC > (rev 61220) > @@ -25,7 +25,7 @@ > */ > > #ifdef HAVE_CONFIG_H > -# include <elementary_config.h> > +# include "elementary_config.h" > #endif > > #ifdef HAVE_EIO > > Modified: trunk/elementary/src/lib/elm_map.c > =================================================================== > --- trunk/elementary/src/lib/elm_map.c 2011-07-11 01:22:09 UTC (rev > 61219) > +++ trunk/elementary/src/lib/elm_map.c 2011-07-11 01:22:19 UTC (rev > 61220) > @@ -1,7 +1,7 @@ > > > #ifdef HAVE_CONFIG_H > -# include <elementary_config.h> > +# include "elementary_config.h" > #endif > > #ifdef HAVE_ECORE_CON > > > ------------------------------------------------------------------------------ > All of the data generated in your IT infrastructure is seriously valuable. > Why? It contains a definitive record of application performance, security > threats, fraudulent activity, and more. Splunk takes this data and makes > sense of it. IT sense. And common sense. > http://p.sf.net/sfu/splunk-d2d-c2 > _______________________________________________ > enlightenment-svn mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn > > ------------------------------------------------------------------------------ All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record of application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-d2d-c2 _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
