AUR에서 PHP 5.6.37을 설치할 때 freetype2 구성 오류 확인

AUR에서 PHP 5.6.37을 설치할 때 freetype2 구성 오류 확인

PHP 버전 5.6.37을 설치하려고 합니다.우레아 소변 비율명령을 사용했지만 makepkg -i"freetype2"를 확인하는 순간에 오류가 표시됩니다.

freetype2...config 확인 중: 오류: freetype-config를 찾을 수 없습니다.

7.2가 설치되어 있지만 이전 프로젝트에는 5.6이 필요하며 Ubuntu와 마찬가지로 두 버전을 모두 설치할 계획입니다.

makepkg -i
==> Making package: php56 5.6.37-1 (Wed 12 Sep 2018 12:27:39 PM +08)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found php-5.6.37.tar.xz
  -> Found php-5.6.37.tar.xz.asc
  -> Found php.ini.patch
  -> Found apache.conf
  -> Found php-fpm.conf.in.patch
  -> Found logrotate.d.php-fpm
  -> Found php-fpm.service
  -> Found php-fpm.tmpfiles
  -> Found use-enchant2.patch
  -> Found php-freetype-2.9.1.patch
==> Validating source files with sha512sums...

[...]

checking whether to enable truetype string function in GD... yes
checking whether to enable JIS-mapped Japanese font support in GD... no
If configure fails try --with-vpx-dir=<DIR>
checking for jpeg_read_header in -ljpeg... yes
checking for png_write_image in -lpng... yes
checking for XpmFreeXpmImage in -lXpm... yes
checking for pkg-config... (cached) no
checking for freetype2... configure: error: freetype-config not found.
==> ERROR: A failure occurred in build().
    Aborting...

Pacman을 설치해도 freetype2문제가 해결되지 않았습니다.

답변1

나는 그것을 고쳤다.

먼저 설치한 pkg-config 다음 PKGBUILD에서 다음 줄을 교체했습니다.

--with-freetype-dir=/usr \

도착하다

--with-freetype-dir=/usr/include/freetype \ 

둘 중 어느 것이 문제를 해결할지, 아니면 둘 다 해결할지는 잘 모르겠습니다.

답변2

sudo pacman -S pkgconf

나를 위해 작동합니다.

관련 정보