mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-22 05:38:10 +02:00
Added a configure option called --enable-standalone-xpbproxy which is useful for deveoping xpbproxy.
The 'active' switch in preferences just disables the in-server xpbproxy (not this standalone).
(cherry picked from commit 4294493632)
21 lines
489 B
Makefile
21 lines
489 B
Makefile
AM_CPPFLAGS=-F/System/Library/Frameworks/ApplicationServices.framework/Frameworks
|
|
AM_LDFLAGS=-L/usr/X11/lib -lX11 -lXfixes -lAppleWM -framework AppKit -framework Foundation -framework ApplicationServices
|
|
|
|
noinst_LTLIBRARIES = libxpbproxy.la
|
|
libxpbproxy_la_SOURCES = \
|
|
trick_autotools.c \
|
|
main.m \
|
|
x-input.m \
|
|
x-selection.m
|
|
|
|
if STANDALONE_XPBPROXY
|
|
|
|
bin_PROGRAMS = xpbproxy
|
|
xpbproxy_SOURCES = app-main.m
|
|
xpbproxy_LDADD = libxpbproxy.la
|
|
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
pbproxy.h \
|
|
x-selection.h
|