Hello, I tried to compile libX11 1.0.0 using the defined environment variables BIGREQS and XPROTO to find the respective packages and then I use PKG_CONFIG_PATH to find the packages that do not have env variables defined for them. Here is my configure command:
./configure --prefix=/media/34GB/Arquivos-de-Programas-Linux/xorg/LibX11-1.0.0/ XPROTO_CFLAGS=/media/34GB/Arquivos-de-Programas-Linux/xorg/Xproto-7.0.4/include/ XPROTO_LIBS=/media/34GB/Arquivos-de-Programas-Linux/xorg/Xproto-7.0.4/lib/ BIGREQS_CFLAGS=/media/34GB/Arquivos-de-Programas-Linux/xorg/Bigreqsproto-1.0.2/include/ BIGREQS_LIBS=/media/34GB/Arquivos-de-Programas-Linux/xorg/Bigreqsproto-1.0.2/lib/ PKG_CONFIG_PATH=/media/34GB/Arquivos-de-Programas-Linux/xorg/Xextproto-7.0.2/lib/pkgconfig/:/media/34GB/Arquivos-de-Programas-Linux/xorg/Xtrans-1.0.0/lib/pkgconfig/:/media/34GB/Arquivos-de-Programas-Linux/xorg/Xau-1.0.0/lib/pkgconfig/
and that's what configure tells me:
"
checking for X11... configure: error: Package requirements (xextproto xtrans xau xcmiscproto) were not met:
Package xproto was not found in the pkg-config search path.
Perhaps you should add the directory containing `xproto.pc'
to the PKG_CONFIG_PATH environment variable
Package 'xproto', required by 'Xau', not found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables X11_CFLAGS
and X11_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
"
But Xproto ALREADY was detected previously. Just before the "cheking for X11", there was:
"
checking for BIGREQS... yes
checking for XPROTO... yes
"
So by some reason, this Xproto detection problem is being caused by Xau, because if I remove it from PKG_CONFIG_PATH, all these messages vanish (obviously, the configure then complains about the lack of Xau)
So, why is this happening and how can I solve it?
_______________________________________________ xorg@lists.x.org: X.Org support Archives: http://lists.freedesktop.org/archives/xorg Info: https://lists.x.org/mailman/listinfo/xorg Your subscription address: %(user_address)s