|
今天心血来潮准备编译git版本的mesa和ati的驱动。
mesa顺利编译通过,但是到ati的驱动这里就不行了。./configure都不能通过,出现如下错误。
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
- checking whether to build static libraries... no
- checking whether gcc -std=gnu99 and cc understand -c and -o together... yes
- ./configure: line 11734: syntax error near unexpected token `RANDR,'
- ./configure: line 11734: `XORG_DRIVER_CHECK_EXT(RANDR, randrproto)'
复制代码
我以为是./configure.ac啥的写的有问题,左看右看,没发现。上google搜,只有一个IRC纪录,其中有提到这个错误。。但是没说解决方法,只是看到说arch也分出了-devel。于是以-devel为关键字搜,真的有xorg-server-devel这个包。。安装上就好了。。。
这是将-devel分出来的前兆吗。。那以后编译程序就。。 |
|