forked from Lainports/freebsd-ports
The port will switch to the newer version if hw context is available in the i915kms driver. - Get ride of WITH_NEW_XORG. - Use @comment in plist to ignore unwanted files in the stagedir, instead of trying to remove them in post-install. - Bump portrevision of 9.1.7 due to dependency changes. - Drop :keepla from USES=libtool. - Drop @dirrm[try] from plists - Give dri propper options, with pkg-help for additional information. - Make separate plist for dri for the different versions, the combined plist was headache inducing. - Add "workaround" patches to allow clang to build the dri port on i386 [1]. USE_GCC is now only needed for 8.x. - Add gbm port and USE_GL switch for it. PR: 192286 [1] Submitted by: Carlos Jacobo Puga Medina [1] Approved by: portmgr (bapt@) In collaberation with: dumbbell@ Obtained from: xorg-dev
20 lines
843 B
Text
20 lines
843 B
Text
--- src/loader/Makefile.in.orig 2014-08-29 13:44:57.595529080 +0200
|
|
+++ src/loader/Makefile.in 2014-08-29 13:46:36.674521667 +0200
|
|
@@ -315,6 +315,8 @@
|
|
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
|
|
LIBCLC_INCLUDEDIR = @LIBCLC_INCLUDEDIR@
|
|
LIBCLC_LIBEXECDIR = @LIBCLC_LIBEXECDIR@
|
|
+LIBDEVQ_CFLAGS = @LIBDEVQ_CFLAGS@
|
|
+LIBDEVQ_LIBS = @LIBDEVQ_LIBS@
|
|
LIBDRM_CFLAGS = @LIBDRM_CFLAGS@
|
|
LIBDRM_LIBS = @LIBDRM_LIBS@
|
|
LIBOBJS = @LIBOBJS@
|
|
@@ -485,7 +487,7 @@
|
|
noinst_LTLIBRARIES = libloader.la
|
|
libloader_la_CPPFLAGS = $(DEFINES) -I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src $(VISIBILITY_CFLAGS) $(LIBUDEV_CFLAGS) \
|
|
- $(am__append_1) $(am__append_4) $(am__append_5)
|
|
+ $(LIBDEVQ_CFLAGS) $(am__append_1) $(am__append_4) $(am__append_5)
|
|
libloader_la_SOURCES = $(LOADER_C_FILES) $(am__append_2)
|
|
libloader_la_LIBADD = $(am__append_3) $(am__append_6)
|
|
all: all-am
|