Move statically linked xorgxkb files from dixmods to a separate directory
[ajax: Fixed test/Makefile.am as well] Reviewed-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
5c8fb7d128
commit
fbdd73fac6
|
@ -2497,6 +2497,7 @@ hw/xfree86/shadowfb/Makefile
|
||||||
hw/xfree86/vbe/Makefile
|
hw/xfree86/vbe/Makefile
|
||||||
hw/xfree86/vgahw/Makefile
|
hw/xfree86/vgahw/Makefile
|
||||||
hw/xfree86/x86emu/Makefile
|
hw/xfree86/x86emu/Makefile
|
||||||
|
hw/xfree86/xkb/Makefile
|
||||||
hw/xfree86/utils/Makefile
|
hw/xfree86/utils/Makefile
|
||||||
hw/xfree86/utils/man/Makefile
|
hw/xfree86/utils/man/Makefile
|
||||||
hw/xfree86/utils/cvt/Makefile
|
hw/xfree86/utils/cvt/Makefile
|
||||||
|
|
|
@ -36,13 +36,13 @@ endif
|
||||||
|
|
||||||
SUBDIRS = common ddc x86emu $(INT10_SUBDIR) os-support parser \
|
SUBDIRS = common ddc x86emu $(INT10_SUBDIR) os-support parser \
|
||||||
ramdac $(VGAHW_SUBDIR) loader modes $(DRI_SUBDIR) \
|
ramdac $(VGAHW_SUBDIR) loader modes $(DRI_SUBDIR) \
|
||||||
$(DRI2_SUBDIR) . $(VBE_SUBDIR) i2c dixmods \
|
$(DRI2_SUBDIR) . $(VBE_SUBDIR) i2c dixmods xkb \
|
||||||
fbdevhw shadowfb exa $(XF86UTILS_SUBDIR) doc man \
|
fbdevhw shadowfb exa $(XF86UTILS_SUBDIR) doc man \
|
||||||
$(GLAMOR_EGL_SUBDIR) drivers
|
$(GLAMOR_EGL_SUBDIR) drivers
|
||||||
|
|
||||||
DIST_SUBDIRS = common ddc i2c x86emu int10 fbdevhw os-support \
|
DIST_SUBDIRS = common ddc i2c x86emu int10 fbdevhw os-support \
|
||||||
parser ramdac shadowfb vbe vgahw \
|
parser ramdac shadowfb vbe vgahw \
|
||||||
loader dixmods dri dri2 exa modes \
|
loader dixmods xkb dri dri2 exa modes \
|
||||||
utils doc man glamor_egl drivers
|
utils doc man glamor_egl drivers
|
||||||
|
|
||||||
bin_PROGRAMS = Xorg
|
bin_PROGRAMS = Xorg
|
||||||
|
@ -66,7 +66,7 @@ LOCAL_LIBS = \
|
||||||
ddc/libddc.la \
|
ddc/libddc.la \
|
||||||
i2c/libi2c.la \
|
i2c/libi2c.la \
|
||||||
$(XORG_LIBS) \
|
$(XORG_LIBS) \
|
||||||
dixmods/libxorgxkb.la \
|
xkb/libxorgxkb.la \
|
||||||
$(DRI_LIB) \
|
$(DRI_LIB) \
|
||||||
$(DRI2_LIB) \
|
$(DRI2_LIB) \
|
||||||
$(DRI3_LIB) \
|
$(DRI3_LIB) \
|
||||||
|
@ -148,5 +148,5 @@ i2c/libi2c.la:
|
||||||
dixmods/libdixmods.la:
|
dixmods/libdixmods.la:
|
||||||
$(AM_V_at)cd dixmods && $(MAKE) libdixmods.la
|
$(AM_V_at)cd dixmods && $(MAKE) libdixmods.la
|
||||||
|
|
||||||
dixmods/libxorgxkb.la:
|
xkb/libxorgxkb.la:
|
||||||
$(AM_V_at)cd dixmods && $(MAKE) libxorgxkb.la
|
$(AM_V_at)cd xkb && $(MAKE) libxorgxkb.la
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
noinst_LTLIBRARIES = libdixmods.la libxorgxkb.la
|
noinst_LTLIBRARIES = libdixmods.la
|
||||||
|
|
||||||
if GLX
|
if GLX
|
||||||
GLXMODS = libglx.la
|
GLXMODS = libglx.la
|
||||||
|
@ -46,5 +46,3 @@ libshadow_la_SOURCES = shmodule.c
|
||||||
|
|
||||||
libdixmods_la_SOURCES = $(top_srcdir)/mi/miinitext.c
|
libdixmods_la_SOURCES = $(top_srcdir)/mi/miinitext.c
|
||||||
libdixmods_la_CFLAGS = $(AM_CFLAGS)
|
libdixmods_la_CFLAGS = $(AM_CFLAGS)
|
||||||
|
|
||||||
libxorgxkb_la_SOURCES = xkbVT.c xkbPrivate.c xkbKillSrv.c
|
|
||||||
|
|
|
@ -1,16 +1,3 @@
|
||||||
srcs_xorg_dixmods = [
|
|
||||||
'xkbVT.c',
|
|
||||||
'xkbPrivate.c',
|
|
||||||
'xkbKillSrv.c',
|
|
||||||
]
|
|
||||||
|
|
||||||
xorg_dixmods = static_library('xorg_dixmods',
|
|
||||||
srcs_xorg_dixmods,
|
|
||||||
include_directories: [inc, xorg_inc],
|
|
||||||
dependencies: common_dep,
|
|
||||||
c_args: xorg_c_args,
|
|
||||||
)
|
|
||||||
|
|
||||||
shared_module(
|
shared_module(
|
||||||
'fb',
|
'fb',
|
||||||
'fbmodule.c',
|
'fbmodule.c',
|
||||||
|
@ -36,6 +23,7 @@ shared_module(
|
||||||
install: true,
|
install: true,
|
||||||
install_dir: module_dir,
|
install_dir: module_dir,
|
||||||
)
|
)
|
||||||
|
|
||||||
shared_module(
|
shared_module(
|
||||||
'shadow',
|
'shadow',
|
||||||
'shmodule.c',
|
'shmodule.c',
|
||||||
|
|
|
@ -57,6 +57,7 @@ endif
|
||||||
if build_vgahw
|
if build_vgahw
|
||||||
subdir('vgahw')
|
subdir('vgahw')
|
||||||
endif
|
endif
|
||||||
|
subdir('xkb')
|
||||||
if build_modesetting
|
if build_modesetting
|
||||||
subdir('drivers/modesetting')
|
subdir('drivers/modesetting')
|
||||||
endif
|
endif
|
||||||
|
@ -75,7 +76,7 @@ xorg_link = [
|
||||||
xorg_common,
|
xorg_common,
|
||||||
xorg_loader,
|
xorg_loader,
|
||||||
xorg_ddc,
|
xorg_ddc,
|
||||||
xorg_dixmods,
|
xorg_xkb,
|
||||||
xorg_i2c,
|
xorg_i2c,
|
||||||
xorg_modes,
|
xorg_modes,
|
||||||
xorg_os_support,
|
xorg_os_support,
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
noinst_LTLIBRARIES = libxorgxkb.la
|
||||||
|
|
||||||
|
AM_CFLAGS = @XORG_CFLAGS@ @DIX_CFLAGS@
|
||||||
|
AM_CPPFLAGS = @XORG_INCS@
|
||||||
|
|
||||||
|
libxorgxkb_la_SOURCES = xkbVT.c xkbPrivate.c xkbKillSrv.c
|
|
@ -0,0 +1,12 @@
|
||||||
|
srcs_xorg_xkb = [
|
||||||
|
'xkbVT.c',
|
||||||
|
'xkbPrivate.c',
|
||||||
|
'xkbKillSrv.c',
|
||||||
|
]
|
||||||
|
|
||||||
|
xorg_xkb = static_library('xorg_xkb',
|
||||||
|
srcs_xorg_xkb,
|
||||||
|
include_directories: [inc, xorg_inc],
|
||||||
|
dependencies: common_dep,
|
||||||
|
c_args: xorg_c_args,
|
||||||
|
)
|
|
@ -144,7 +144,7 @@ tests_LDADD += \
|
||||||
$(top_builddir)/hw/xfree86/ramdac/libramdac.la \
|
$(top_builddir)/hw/xfree86/ramdac/libramdac.la \
|
||||||
$(top_builddir)/hw/xfree86/ddc/libddc.la \
|
$(top_builddir)/hw/xfree86/ddc/libddc.la \
|
||||||
$(top_builddir)/hw/xfree86/i2c/libi2c.la \
|
$(top_builddir)/hw/xfree86/i2c/libi2c.la \
|
||||||
$(top_builddir)/hw/xfree86/dixmods/libxorgxkb.la \
|
$(top_builddir)/hw/xfree86/xkb/libxorgxkb.la \
|
||||||
$(top_builddir)/Xext/libXvidmode.la \
|
$(top_builddir)/Xext/libXvidmode.la \
|
||||||
$(XSERVER_LIBS) \
|
$(XSERVER_LIBS) \
|
||||||
$(XORG_LIBS)
|
$(XORG_LIBS)
|
||||||
|
|
Loading…
Reference in New Issue