aboutsummaryrefslogtreecommitdiff
path: root/depends/patches
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2019-07-17 16:21:50 -0400
committerCarl Dong <contact@carldong.me>2019-07-17 17:04:40 -0400
commitaa53cb7a2f04a59a4722c662e67b7a6ec04e32b5 (patch)
treec665441297afff48bc807db497235c40a3db562a /depends/patches
parent9a01ab04e1125b37618266d7fd1c3a6e3bb7e3f8 (diff)
downloadbitcoin-aa53cb7a2f04a59a4722c662e67b7a6ec04e32b5.tar.xz
depends: libX11: Make package headers-only
We're no longer building QT with libX11/XLib, however, libX11/XLib headers are still required for parts of QT. In this commit we add a minimal configure.ac for libX11/XLib that is headers-only. This change allows us to remove all of libX11/XLib's dependencies.
Diffstat (limited to 'depends/patches')
-rw-r--r--depends/patches/libX11/configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/depends/patches/libX11/configure.ac b/depends/patches/libX11/configure.ac
new file mode 100644
index 0000000000..1c3bd41b3f
--- /dev/null
+++ b/depends/patches/libX11/configure.ac
@@ -0,0 +1,6 @@
+AC_PREREQ([2.60])
+AC_INIT([libX11], [1.6.2],
+ [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libX11])
+AM_INIT_AUTOMAKE([foreign])
+AC_CONFIG_FILES([include/Makefile])
+AC_OUTPUT