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.
This commit is contained in:
Carl Dong
2019-07-17 16:21:50 -04:00
parent 9a01ab04e1
commit aa53cb7a2f
5 changed files with 12 additions and 69 deletions

View File

@@ -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