ok - turn off visibility stuff for e -0 for some reason just the dropshadow

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
This commit is contained in:
Carsten Haitzler 2006-01-10 04:23:43 +00:00
parent 28cc14919c
commit ebf9cca1ed
14 changed files with 22 additions and 31 deletions

View File

@ -4,6 +4,7 @@
#ifndef E_H
#define E_H
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
@ -23,6 +24,23 @@
#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>
@ -40,14 +58,6 @@
#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

View 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>

View 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

View 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)

View 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 */

View 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;

View 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:
*

View 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)

View 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));

View 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:
*

View File

@ -17,10 +17,6 @@
/* 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);

View 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);

View 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.

View 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.