elementary: elementary_config.h is a local include
authorMike McCormack <mj.mccormack@samsung.com>
Mon, 11 Jul 2011 01:22:19 +0000 (01:22 +0000)
committerMike McCormack <mikem@ring3k.org>
Mon, 11 Jul 2011 01:22:19 +0000 (01:22 +0000)
Using #include <elementary_config.h> will fail if
elementary has never been installed.

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>
SVN revision: 61220

src/bin/test_hover.c
src/bin/test_slideshow.c
src/lib/elc_fileselector.c
src/lib/elm_map.c

index eb3785f..09131bd 100644 (file)
@@ -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__)
index 0e31466..3e2c541 100644 (file)
@@ -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;
index d299296..33f5a32 100644 (file)
@@ -25,7 +25,7 @@
  */
 
 #ifdef HAVE_CONFIG_H
-# include <elementary_config.h>
+# include "elementary_config.h"
 #endif
 
 #ifdef HAVE_EIO
index 31b87ff..69d5774 100644 (file)
@@ -1,7 +1,7 @@
 
 
 #ifdef HAVE_CONFIG_H
-# include <elementary_config.h>
+# include "elementary_config.h"
 #endif
 
 #ifdef HAVE_ECORE_CON