mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
In file included from ../glx/glxdri2.c:35:
/usr/local/include/GL/internal/dri_interface.h:43:10: fatal error: 'drm.h' file not found
#include <drm.h>
^~~~~~~
In file included from ../glx/glxdriswrast.c:39:
/usr/local/include/GL/internal/dri_interface.h:43:10: fatal error: 'drm.h' file not found
#include <drm.h>
^~~~~~~
44 lines
913 B
Meson
44 lines
913 B
Meson
shared_module(
|
|
'wfb',
|
|
'fbmodule.c',
|
|
|
|
include_directories: [inc, xorg_inc],
|
|
c_args: [ xorg_c_args, wfb_args ],
|
|
dependencies: common_dep,
|
|
link_whole: libxserver_wfb,
|
|
link_with: e,
|
|
|
|
install: true,
|
|
install_dir: module_dir,
|
|
)
|
|
|
|
shared_module(
|
|
'shadow',
|
|
'shmodule.c',
|
|
|
|
include_directories: [inc, xorg_inc],
|
|
c_args: xorg_c_args,
|
|
dependencies: common_dep,
|
|
link_whole: libxserver_miext_shadow,
|
|
link_with: e,
|
|
|
|
install: true,
|
|
install_dir: module_dir,
|
|
)
|
|
|
|
if build_glx
|
|
shared_module(
|
|
'glx',
|
|
[ 'glxmodule.c', srcs_glxdri2 ],
|
|
|
|
include_directories: [ inc, xorg_inc, glx_inc ],
|
|
c_args: [ xorg_c_args, glx_align64 ],
|
|
dependencies: [ common_dep, dl_dep, dri_dep ],
|
|
link_whole: libxserver_glx,
|
|
link_with: e,
|
|
|
|
install: true,
|
|
install_dir: join_paths(module_dir, 'extensions')
|
|
)
|
|
endif
|