diff options
-rw-r--r-- | .travis.yml | 4 | ||||
-rw-r--r-- | drmtools.h | 3 | ||||
-rw-r--r-- | fbida.spec | 3 | ||||
-rw-r--r-- | fbpdf.c | 2 | ||||
-rw-r--r-- | meson.build | 5 |
5 files changed, 1 insertions, 16 deletions
diff --git a/.travis.yml b/.travis.yml index 03d61ce..09e05a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,10 +17,6 @@ addons: - python3-setuptools - ninja-build - libdrm-dev - - libgbm-dev - - libepoxy-dev - - libegl1-mesa-dev - - libgl1-mesa-dev - libcairo2-dev - libpixman-1-dev - libsystemd-dev @@ -13,6 +13,3 @@ int drm_init_dev(const char *dev, const char *output, const char *mode); gfxstate *drm_init(const char *device, const char *output, const char *mode, bool pageflip); void drm_info(const char *device); - -/* drmtools-egl.c */ -gfxstate *drm_init_egl(const char *device, const char *output, const char *mode); @@ -30,9 +30,6 @@ BuildRequires: pkgconfig(freetype2) BuildRequires: pkgconfig(fontconfig) BuildRequires: pkgconfig(libdrm) BuildRequires: pkgconfig(poppler-glib) -BuildRequires: pkgconfig(gbm) -BuildRequires: pkgconfig(egl) -BuildRequires: pkgconfig(epoxy) BuildRequires: pkgconfig(cairo) BuildRequires: pkgconfig(libudev) BuildRequires: pkgconfig(libinput) @@ -29,8 +29,6 @@ #include <poppler.h> #include <cairo.h> -#include <epoxy/egl.h> - #include "vt.h" #include "kbd.h" #include "fbtools.h" diff --git a/meson.build b/meson.build index e09b6f4..e4c2852 100644 --- a/meson.build +++ b/meson.build @@ -17,8 +17,6 @@ pixman_dep = dependency('pixman-1') poppler_dep = dependency('poppler-glib') cairo_dep = dependency('cairo') drm_dep = dependency('libdrm') -gbm_dep = dependency('gbm') -epoxy_dep = dependency('epoxy') exif_dep = dependency('libexif') png_dep = dependency('libpng') tiff_dep = dependency('libtiff-4') @@ -128,8 +126,7 @@ executable('thumbnail.cgi', fbpdf_srcs = [ 'fbpdf.c', 'parseconfig.c', 'fbiconfig.c', 'vt.c', 'kbd.c', 'logind.c', 'fbtools.c', 'drmtools.c', 'gfx.c' ] -fbpdf_deps = [ drm_dep, gbm_dep, epoxy_dep, - pixman_dep, poppler_dep, cairo_dep, +fbpdf_deps = [ drm_dep, pixman_dep, poppler_dep, cairo_dep, udev_dep, input_dep, xkb_dep, systemd_dep ] executable('fbpdf', |