mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-21 09:32:39 +02:00

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.
7 lines
196 B
Plaintext
7 lines
196 B
Plaintext
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
|