Prepare to disable GNOME1/KDE1 hints by default without source files being

dropped from the distribution .tar.gz.


SVN revision: 7277
This commit is contained in:
Kim Woelders 2003-08-03 19:24:16 +00:00
parent 61e452ac85
commit 93bdec717e
4 changed files with 15 additions and 9 deletions

View File

@ -4,15 +4,6 @@ EXTRA_DIST = README ChangeLog TODO ewmh.c gnome.c kde.c
bin_PROGRAMS = enlightenment
if ENABLE_EWMH
SRCS_EWMH = ewmh.c
endif
if ENABLE_GNOME
SRCS_GNOME = gnome.c
endif
if ENABLE_KDE
SRCS_KDE = kde.c
endif
enlightenment_SOURCES = \
E.h \
timestamp.h \
@ -39,11 +30,13 @@ enlightenment_SOURCES = \
draw.c \
events.c \
evhandlers.c \
ewmh.c \
file.c \
finders.c \
focus.c \
fx.c \
globals.c \
gnome.c \
grabs.c \
groups.c \
handlers.c \
@ -53,6 +46,7 @@ enlightenment_SOURCES = \
iconify.c \
init.c \
ipc.c \
kde.c \
lists.c \
main.c \
memory.c \

View File

@ -25,6 +25,8 @@
*/
#include "E.h"
#if ENABLE_EWMH
#if DEBUG_EWMH
#undef EDBUG
#define EDBUG(a,b) printf(b "\n")
@ -859,3 +861,5 @@ EWMH_ProcessPropertyChange(EWin * ewin, Atom atom_change)
#endif
EDBUG_RETURN_;
}
#endif

View File

@ -22,6 +22,8 @@
*/
#include "E.h"
#if ENABLE_GNOME
/* WIN_WM_NAME STRING - contains a string identifier for the WM's name */
#define XA_WIN_WM_NAME "_WIN_WM_NAME"
@ -877,3 +879,5 @@ GNOME_ProcessClientMessage(XClientMessageEvent * event)
EDBUG_RETURN_;
}
}
#endif

View File

@ -22,6 +22,8 @@
*/
#include "E.h"
#if ENABLE_KDE
/* This code is copyright 2000 The Enlightenment Development Team */
/* based on code by Matthias Ettrich from KWM (http://www.kde.org)
* and code by Alfredo Kojima in Window Maker (http://www.windowmaker.org)
@ -1257,3 +1259,5 @@ KDE_UpdateClient(EWin * ewin)
EDBUG_RETURN_;
}
#endif