ok - turn off visibility stuff for e -0 for some reason just the dropshadow
authorCarsten Haitzler <raster@rasterman.com>
Tue, 10 Jan 2006 04:23:43 +0000 (04:23 +0000)
committerCarsten Haitzler <raster@rasterman.com>
Tue, 10 Jan 2006 04:23:43 +0000 (04:23 +0000)
module has problems with memcpy and memset... but its identical to everything
else and i dont see why it doesnt work and others do... weird.

SVN revision: 19679

14 files changed:
src/bin/e.h
src/bin/e_alert.c
src/bin/e_apps.c
src/bin/e_hints.c
src/bin/e_imc_main.c
src/bin/e_int_menus.c
src/bin/e_intl.c
src/bin/e_intl.h
src/bin/e_main.c
src/bin/e_module.c
src/bin/e_object.c
src/bin/e_prefix.c
src/bin/e_signals.c
src/bin/e_zone.c

index 0a533c3..d202591 100644 (file)
@@ -4,6 +4,7 @@
 #ifndef E_H
 #define E_H
 
+#include "config.h"
 
 #include <stdio.h>
 #include <stdlib.h>
 #include <pwd.h>
 #include <grp.h>
 #include <glob.h>
+#include <locale.h>
+#include <libintl.h>
+#include <errno.h>
+
+#ifdef HAVE_ALLOCA_H
+#include <alloca.h>
+#endif
+
+#ifdef HAVE_VALGRIND
+# include <memcheck.h>
+#endif
+
+#ifdef OBJECT_PARANOIA_CHECK
+#include <execinfo.h>
+#include <signal.h>
+#include <setjmp.h>
+#endif
 
 #include <Evas.h>
 #include <Evas_Engine_Buffer.h>
 #include <Eet.h>
 #include <Edje.h>
 
-#ifdef USE_E_CONFIG_H
-#include "config.h"
-#endif
-
-#ifdef HAVE_ALLOCA_H
-#include <alloca.h>
-#endif
-
 #if HAVE___ATTRIBUTE__
 #define __UNUSED__ __attribute__((unused))
 #else
@@ -66,7 +76,7 @@
 #else
 # ifdef __GNUC__
 #  if __GNUC__ >= 4
-#   pragma GCC visibility push(hidden)
+/*#   pragma GCC visibility push(hidden)*/
 #   define EAPI __attribute__ ((visibility("default")))
 #  else
 #   define EAPI
index 0f2b3e3..292c6fd 100644 (file)
@@ -2,6 +2,7 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e_alert.h"
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdarg.h>
index 469e6ad..2532b31 100644 (file)
@@ -2,7 +2,7 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include <errno.h>
+
 /* TODO List:
  * 
  * - We assume only .eap files in 'all', no subdirs
index 05c6754..e0ddc11 100644 (file)
@@ -2,7 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
 
 EAPI void
 e_hints_init(void)
index c0ca650..67ffe4d 100644 (file)
@@ -2,9 +2,8 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include <errno.h>
 
-extern int errno;
+//extern int errno;
 static void _e_help(void);
 
 /* externally accessible functions */
index 53dc43e..2b5391a 100644 (file)
@@ -2,7 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
 
 typedef struct _Main_Data Main_Data;
 
index edcd04e..ed63837 100644 (file)
@@ -2,7 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
 
 /* TODO List:
  * 
index 06758d2..fa6649a 100644 (file)
@@ -3,9 +3,6 @@
  */
 #ifdef E_TYPEDEFS
 
-#include <locale.h>
-#include <libintl.h>
-
 #define _(str) gettext(str)
 #define d_(str, dom) dgettext(PACKAGE dom, str)
 
index 5790cae..5b7db52 100644 (file)
@@ -2,7 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
 
 /* local subsystem functions */
 static void _e_main_shutdown_push(int (*func)(void));
index 8a626ca..3ab2a54 100644 (file)
@@ -2,11 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
-
-#ifdef HAVE_VALGRIND
-# include <memcheck.h>
-#endif
 
 /* TODO List:
  * 
index fbff4b3..08fccaa 100644 (file)
 /* yes - i know. glibc specific... but i like being able to do my own */
 /* backtraces! NB: you need CFLAGS="-rdynamic -g" LDFLAGS="-rdynamic -g" */
 #ifdef OBJECT_PARANOIA_CHECK
-#include <execinfo.h>
-#include <stdio.h>
-#include <signal.h>
-#include <setjmp.h>
 
 /* local subsystem functions */
 static void _e_object_segv(int sig);
index d2d42ba..e991e9c 100644 (file)
@@ -2,7 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
 
 /* local subsystem functions */
 static int _e_prefix_fallbacks(void);
index 8dc3216..f0aef37 100644 (file)
@@ -7,7 +7,6 @@
 #include "e.h"
 
 #ifdef OBJECT_PARANOIA_CHECK   
-#include <execinfo.h>
 
 /* a tricky little devil, requires e and it's libs to be built
  * with the -rdynamic flag to GCC for any sort of decent output. 
index ae612f6..c39b7c7 100644 (file)
@@ -2,7 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
 
 /* E_Zone is a child object of E_Container. There is one zone per screen
  * in a xinerama setup. Each zone has one or more desktops.