now it builds! cleanly too

SVN revision: 7990
This commit is contained in:
Carsten Haitzler 2003-12-03 07:23:08 +00:00
parent 7f82e8d54b
commit 0e29b41e6e
3 changed files with 15 additions and 4 deletions

View File

@ -36,6 +36,12 @@ else
ECORE_IPC_LIB =
endif
if BUILD_ECORE_TXT
ECORE_TXT_LIB = $(top_builddir)/src/lib/ecore_txt/libecore_txt.la
else
ECORE_TXT_LIB =
endif
INCLUDES = \
-I$(top_srcdir)/src/lib/ecore \
-I$(top_srcdir)/src/lib/ecore_evas \
@ -44,6 +50,7 @@ INCLUDES = \
-I$(top_srcdir)/src/lib/ecore_job \
-I$(top_srcdir)/src/lib/ecore_con \
-I$(top_srcdir)/src/lib/ecore_ipc \
-I$(top_srcdir)/src/lib/ecore_txt \
@evas_cflags@ \
@x_cflags@
@ -62,6 +69,7 @@ $(ECORE_X_LIB) \
$(ECORE_EVAS_LIB) \
$(ECORE_CON_LIB) \
$(ECORE_IPC_LIB) \
$(ECORE_TXT_LIB) \
-lm
ecore_test_LDFLAGS =
@ -77,7 +85,8 @@ $(ECORE_FB_LIB) \
$(ECORE_X_LIB) \
$(ECORE_EVAS_LIB) \
$(ECORE_CON_LIB) \
$(ECORE_IPC_LIB)
$(ECORE_IPC_LIB) \
$(ECORE_TXT_LIB)
ecore_evas_test_SOURCES = \
ecore_evas_test.c \
@ -94,6 +103,7 @@ $(ECORE_X_LIB) \
$(ECORE_EVAS_LIB) \
$(ECORE_CON_LIB) \
$(ECORE_IPC_LIB) \
$(ECORE_TXT_LIB) \
-lm
ecore_evas_test_LDFLAGS =
@ -109,4 +119,5 @@ $(ECORE_FB_LIB) \
$(ECORE_X_LIB) \
$(ECORE_EVAS_LIB) \
$(ECORE_CON_LIB) \
$(ECORE_IPC_LIB)
$(ECORE_IPC_LIB) \
$(ECORE_TXT_LIB)

View File

@ -7,5 +7,4 @@ ecore_fb \
ecore_con \
ecore_x \
ecore_ipc \
ecore_evas \
ecore_evas

View File

@ -1,6 +1,7 @@
#include "Ecore.h"
#include "ecore_x_private.h"
#include "Ecore_X.h"
#include "Ecore_Txt.h"
static void _ecore_x_event_free_window_prop_name_class_change(void *data, void *ev);
static void _ecore_x_event_free_window_prop_title_change(void *data, void *ev);