forked from AuroraMiddleware/gtk
019fece724
2006-08-29 Tor Lillqvist <tml@novell.com> Remove support for Windows 9x/ME. GTK+ hasn't worked on Win9x since 2.6 or 2.8. It's pointless to keep the Win9x code in here as it isn't being maintained anyway. If somebody is interested, it can always be found in older GTK+ versions, and in CVS. * configure.in * acconfig.h * gdk/Makefile.am * gdk/win32/Makefile.am * gdk/win32/libie55uid.la * gdk/win32/gdkevents-win32.c: Remove the --with-ie55 configure switch and associated stuff. Active IMM and the <dimm.h> header was used for IM support on NT4 and Win9x. Win2k and later have IM support built-in. * gdk/win32/gdkevents-win32.c: Remove the G_WIN32_IS_NT_BASED() and G_WIN32_HAVE_WIDECHAR_API() tests and their false (Win9x) branches, and any variables or static functions used only by the Win9x branches.
71 lines
1.3 KiB
Makefile
71 lines
1.3 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libgdkincludedir = $(includedir)/gtk-2.0/gdk
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"Gdk\" \
|
|
-DINSIDE_GDK_WIN32 \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
$(GTK_DEBUG_FLAGS) \
|
|
$(GDK_DEP_CFLAGS) \
|
|
$(GDK_WIN32_EXTRA_CFLAGS)\
|
|
-DGDK_COMPILATION
|
|
|
|
LDADDS = $(GDK_DEP_LIBS)
|
|
|
|
if HAVE_WINTAB
|
|
libwntab32x_a = .libs/libwntab32x.a
|
|
|
|
.libs/libwntab32x.a: $(WINTAB_LIB)
|
|
cp $< $@
|
|
endif
|
|
|
|
noinst_DATA = $(libwntab32x_a)
|
|
|
|
noinst_LTLIBRARIES = libgdk-win32.la
|
|
|
|
SUBDIRS=rc
|
|
|
|
EXTRA_DIST = \
|
|
bdfcursor.c \
|
|
makefile.msc \
|
|
libwntab32x.la
|
|
|
|
libgdk_win32_la_SOURCES = \
|
|
xcursors.h \
|
|
gdkcolor-win32.c \
|
|
gdkcursor-win32.c \
|
|
gdkdisplay-win32.c \
|
|
gdkdnd-win32.c \
|
|
gdkdrawable-win32.c \
|
|
gdkdrawable-win32.h \
|
|
gdkevents-win32.c \
|
|
gdkfont-win32.c \
|
|
gdkgc-win32.c \
|
|
gdkgeometry-win32.c \
|
|
gdkglobals-win32.c \
|
|
gdkim-win32.c \
|
|
gdkimage-win32.c \
|
|
gdkinput.c \
|
|
gdkinput-win32.c \
|
|
gdkinput-win32.h \
|
|
gdkkeys-win32.c \
|
|
gdkmain-win32.c \
|
|
gdkpixmap-win32.c \
|
|
gdkpixmap-win32.h \
|
|
gdkprivate-win32.h \
|
|
gdkproperty-win32.c \
|
|
gdkscreen-win32.c \
|
|
gdkselection-win32.c \
|
|
gdkspawn-win32.c \
|
|
gdkvisual-win32.c \
|
|
gdkwin32.h \
|
|
gdkwin32id.c \
|
|
gdkwindow-win32.c \
|
|
gdkwindow-win32.h
|
|
|
|
libgdkinclude_HEADERS = \
|
|
gdkwin32.h
|