mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
01fcbc199f
2003-12-10 Mark McLoughlin <mark@skynet.ie> Utility functions for multi-screen applications which need to ensure launched applications appear on a certain screen. See bug #95897. * gdk/gdkspawn.h: header for multi-screen launching support. * gdk/Makefile.am: install gdkspawn.h. * gdk/x11/Makefile.am: * gdk/x11/gdkspawn-x11.c: (gdk_spawn_make_environment_for_screen): private function to create an environment vector with DISPLAY set appropriately for the screen. (gdk_spawn_on_screen): multi-screen version of g_spawn_async(). (gdk_spawn_on_screen_with_pipes): version of g_spawn_async_with_pipes(). (gdk_spawn_command_line_on_screen): version of g_spawn_command_line_async(). * gdk/linux-fb/Makefile.am, gdk/linux-fb/gdkspawn-fb.c: linux-fb impl. * gdk/win32/Makefile.am, gdk/win32/gdkspawn-win32.c: win32 impl.
85 lines
1.6 KiB
Makefile
85 lines
1.6 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
bin_PROGRAMS =
|
|
|
|
if ENABLE_FB_MANAGER
|
|
bin_PROGRAMS += gdkfbmanager gdkfbswitch
|
|
endif
|
|
|
|
libgdkincludedir = $(includedir)/gtk-2.0/gdk
|
|
libgdkfbincludedir = $(includedir)/gtk-2.0/gdk/linux-fb
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"Gdk\" \
|
|
-DGDK_DATA_PREFIX=\"$(prefix)\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DGDK_PIXBUF_DISABLE_DEPRECATED \
|
|
$(GDK_DEP_CFLAGS) \
|
|
$(GTK_DEBUG_FLAGS)
|
|
|
|
noinst_LTLIBRARIES = libgdk-linux-fb.la
|
|
|
|
libgdkinclude_HEADERS= \
|
|
gdkfb.h
|
|
|
|
libgdk_linux_fb_la_SOURCES = \
|
|
gdkcolor-fb.c \
|
|
gdkcursor-fb.c \
|
|
gdkdisplay-fb.c \
|
|
gdkdnd-fb.c \
|
|
gdkdrawable-fb2.c \
|
|
gdkevents-fb.c \
|
|
gdkfbmanager.h \
|
|
gdkfont-fb.c \
|
|
gdkgc-fb.c \
|
|
gdkgeometry-fb.c \
|
|
gdkglobals-fb.c \
|
|
gdkim-fb.c \
|
|
gdkimage-fb.c \
|
|
gdkinput.c \
|
|
gdkinputprivate.h \
|
|
gdkkeyboard-fb.c \
|
|
gdkmain-fb.c \
|
|
gdkmouse-fb.c \
|
|
gdkpango-fb.c \
|
|
gdkpixmap-fb.c \
|
|
gdkprivate-fb.h \
|
|
gdkproperty-fb.c \
|
|
gdkrender-fb.c \
|
|
gdkscreen-fb.c \
|
|
gdkselection-fb.c \
|
|
gdkspawn-fb.c \
|
|
gdkvisual-fb.c \
|
|
gdkwindow-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.c \
|
|
mispans.h \
|
|
mistruct.h \
|
|
mitypes.h \
|
|
miwideline.c \
|
|
miwideline.h \
|
|
mizerclip.c \
|
|
mizerline.c
|
|
|
|
gdkfbmanager_sources = gdkfbmanager.c
|
|
gdkfbmanager_LDFLAGS = $(GLIB_LIBS)
|
|
gdkfbswitch_sources = gdkfbswitch.c
|
|
gdkfbswitch_LDFLAGS = $(GLIB_LIBS)
|
|
|
|
EXTRA_DIST=x-cursors.xbm
|