mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 09:19:15 -04:00
* libGL, libEGL, libglesv2, libglapi, and gbm have been moved into mesa-libs, graphics/dri has been renamed to mesa-dri, and USE_GL has been adjusted * mesa-libs has a new WAYLAND option that enables platform support in libEGL * mesa-dri now depends on graphics/s2tc for compressed texture support [1] * re-remove obsolete dependency on makedepends [2] * correct sed fix backported from 17.1 [3] PR: 218799 (exp-run), 212762 [1], 218552 [2], 218562 [3] Submitted by: dbn [1], jbeich [2,3] Reported by: afiskon@devzen.ru [1] Reviewed by: kwm, johalun0@gmail.com Approved by: portmgr, swills (mentor) Differential Revision: https://reviews.freebsd.org/D10448
29 lines
1.2 KiB
Text
29 lines
1.2 KiB
Text
--- Makefile.am.orig 2017-05-05 11:54:01 UTC
|
|
+++ Makefile.am
|
|
@@ -73,7 +73,7 @@ nodist_include_HEADERS = \
|
|
protocol/wayland-client-protocol.h
|
|
|
|
libwayland_server_la_CFLAGS = $(FFI_CFLAGS) $(AM_CFLAGS) -pthread
|
|
-libwayland_server_la_LIBADD = $(FFI_LIBS) libwayland-private.la libwayland-util.la -lrt -lm
|
|
+libwayland_server_la_LIBADD = $(FFI_LIBS) $(EPOLLSHIM_LIBS) libwayland-private.la libwayland-util.la -lrt -lm
|
|
libwayland_server_la_LDFLAGS = -version-info 1:0:1
|
|
libwayland_server_la_SOURCES = \
|
|
src/wayland-server.c \
|
|
@@ -85,7 +85,7 @@ nodist_libwayland_server_la_SOURCES = \
|
|
protocol/wayland-protocol.c
|
|
|
|
libwayland_client_la_CFLAGS = $(FFI_CFLAGS) $(AM_CFLAGS) -pthread
|
|
-libwayland_client_la_LIBADD = $(FFI_LIBS) libwayland-private.la libwayland-util.la -lrt -lm
|
|
+libwayland_client_la_LIBADD = $(FFI_LIBS) $(EPOLLSHIM_LIBS) libwayland-private.la libwayland-util.la -lrt -lm
|
|
libwayland_client_la_LDFLAGS = -version-info 3:0:3
|
|
libwayland_client_la_SOURCES = \
|
|
src/wayland-client.c
|
|
@@ -198,7 +198,7 @@ libtest_runner_la_LIBADD = \
|
|
libwayland-util.la \
|
|
libwayland-client.la \
|
|
libwayland-server.la \
|
|
- -lrt -ldl $(FFI_LIBS)
|
|
+ -lrt $(DL_LIBS) $(FFI_LIBS) $(EPOLLSHIM_LIBS)
|
|
|
|
|
|
array_test_SOURCES = tests/array-test.c
|