diff options
-rw-r--r-- | configure.ac | 3 | ||||
-rw-r--r-- | hw/xquartz/mach-startup/Makefile.am | 2 | ||||
-rw-r--r-- | hw/xquartz/pbproxy/Makefile.am | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 2bfa29691..b7d997957 100644 --- a/configure.ac +++ b/configure.ac @@ -1553,8 +1553,7 @@ if test "x$XQUARTZ" = xyes; then CFLAGS="${CFLAGS} -DROOTLESS_WORKAROUND -DNO_ALLOCA" - PKG_CHECK_MODULES(APPLEWMPROTO, [applewmproto >= 1.1.1]) - PKG_CHECK_MODULES(APPLEWM, [applewm >= 1.0.0]) + PKG_CHECK_MODULES(XPBPROXY, [applewmproto >= 1.1.1] [applewm >= 1.0.0] xfixes fixesproto) if test "x$STANDALONE_XPBPROXY" = xyes ; then AC_DEFINE(STANDALONE_XPBPROXY,1,[Build a standalone xpbproxy]) diff --git a/hw/xquartz/mach-startup/Makefile.am b/hw/xquartz/mach-startup/Makefile.am index 65ee2fae1..b4e78522a 100644 --- a/hw/xquartz/mach-startup/Makefile.am +++ b/hw/xquartz/mach-startup/Makefile.am @@ -19,7 +19,7 @@ X11_LDADD = \ $(top_builddir)/dix/dixfonts.lo \ $(top_builddir)/miext/rootless/librootless.la \ $(top_builddir)/hw/xquartz/pbproxy/libxpbproxy.la \ - $(DARWIN_LIBS) $(XSERVER_LIBS) $(XSERVER_SYS_LIBS) -lXplugin -lX11 + $(DARWIN_LIBS) $(XSERVER_LIBS) $(XSERVER_SYS_LIBS) -lXplugin X11_LDFLAGS = \ -XCClinker -Objc \ diff --git a/hw/xquartz/pbproxy/Makefile.am b/hw/xquartz/pbproxy/Makefile.am index 65e5e4a60..e1c537fbb 100644 --- a/hw/xquartz/pbproxy/Makefile.am +++ b/hw/xquartz/pbproxy/Makefile.am @@ -1,5 +1,5 @@ AM_CPPFLAGS=-F/System/Library/Frameworks/ApplicationServices.framework/Frameworks -AM_LDFLAGS=-L/usr/X11/lib -lX11 -lXfixes -lAppleWM -framework AppKit -framework Foundation -framework ApplicationServices +AM_CFLAGS=$(XPBPROXY_CFLAGS) noinst_LTLIBRARIES = libxpbproxy.la libxpbproxy_la_SOURCES = \ @@ -8,6 +8,8 @@ libxpbproxy_la_SOURCES = \ x-input.m \ x-selection.m +libxpbproxy_la_LDFLAGS=$(XPBPROXY_LIBS) + if STANDALONE_XPBPROXY bin_PROGRAMS = xpbproxy |