mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
75fd7f09af
2001-06-25 Alexander Larsson <alexl@redhat.com> * configure.in: Added --enable-fbmanager. This is some experimental code that lets several GtkFB apps coordinate their access to the framebuffer. * acconfig.h: Added ENABLE_FB_MANAGER. * gdk/linux-fb/Makefile.am: Added gdkfbmanager and gdkfbswitch. * gdk/linux-fb/gdkkeyboard-fb.c: * gdk/linux-fb/gdkmouse-fb.c: * gdk/linux-fb/gdkprivate-fb.h: Split device init and open so that they can be opened and closed while switched away. * gdk/linux-fb/gdkmain-fb.c: Add the basic manager communication. * gdk/linux-fb/gdkrender-fb.c: Don't update to the shadow fb if we're blocked by the fb manager.
84 lines
1.5 KiB
Makefile
84 lines
1.5 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
if ENABLE_FB_MANAGER
|
|
bin_PROGRAMS = gdkfbmanager gdkfbswitch
|
|
else
|
|
bin_PROGRAMS =
|
|
endif
|
|
|
|
libgdkincludedir = $(includedir)/gtk-2.0/gdk
|
|
libgdkfbincludedir = $(includedir)/gtk-2.0/gdk/linux-fb
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-DG_LOG_DOMAIN=\"Gdk\" \
|
|
-DGDK_DATA_PREFIX=\"$(prefix)\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
@GDK_DEP_CFLAGS@ \
|
|
@GTK_DEBUG_FLAGS@ \
|
|
@STRIP_END@
|
|
|
|
LDFLAGS = @STRIP_BEGIN@ \
|
|
@GDK_DEP_LIBS@ \
|
|
-lm \
|
|
@STRIP_END@
|
|
|
|
noinst_LTLIBRARIES = libgdk-linux-fb.la
|
|
|
|
libgdkinclude_HEADERS= \
|
|
gdkfb.h
|
|
|
|
libgdk_linux_fb_la_SOURCES = \
|
|
gdkcolor-fb.c \
|
|
gdkcursor-fb.c \
|
|
gdkdnd-fb.c \
|
|
gdkdrawable-fb2.c \
|
|
gdkfont-fb.c \
|
|
gdkgc-fb.c \
|
|
gdkgeometry-fb.c \
|
|
gdkglobals-fb.c \
|
|
gdkim-fb.c \
|
|
gdkimage-fb.c \
|
|
gdkinput.c \
|
|
gdkmain-fb.c \
|
|
gdkpixmap-fb.c \
|
|
gdkproperty-fb.c \
|
|
gdkselection-fb.c \
|
|
gdkvisual-fb.c \
|
|
gdkwindow-fb.c \
|
|
gdkprivate-fb.h \
|
|
gdkinputprivate.h \
|
|
gdkkeyboard-fb.c \
|
|
gdkmouse-fb.c \
|
|
gdkevents-fb.c \
|
|
gdkrender-fb.c \
|
|
mi.h \
|
|
miarc.c \
|
|
midash.c \
|
|
mifillarc.c \
|
|
mifillarc.h \
|
|
mifpoly.h \
|
|
mifpolycon.c \
|
|
miline.h \
|
|
mipoly.c \
|
|
mipoly.h \
|
|
mipolygen.c \
|
|
mipolyutil.c \
|
|
miscanfill.h \
|
|
mispans.h \
|
|
mispans.c \
|
|
mistruct.h \
|
|
mitypes.h \
|
|
miwideline.c \
|
|
miwideline.h \
|
|
mizerclip.c \
|
|
mizerline.c \
|
|
gdkpango-fb.c \
|
|
gdkfbmanager.h
|
|
|
|
gdkfbmanager_sources = gdkfbmanager.c
|
|
gdkfbswitch_sources = gdkfbswitch.c
|
|
|
|
EXTRA_DIST=x-cursors.xbm
|