如何将PDFlib添加到bitnami mamp堆栈

时间:2016-09-10 20:27:59

标签: php mamp bitnami pdflib

我想使用PDFlib将图像添加到现有的pdf中。我目前正在Bitnami mampstack-5.6.19-0上测试我的网站,但PDFlib没有安装此堆栈。

我已尝试按照此post中的说明进行操作,并将其调整为Mac环境,但现在好运

我使用macports更新了本地php的pdflib,所以我可以给pecl提供pdflib.h的路径

这是运行pecl install pdflib

时错误获取的打印输出
bash-3.2$ sudo pecl install pdflib
downloading pdflib-3.0.4.tgz ...
Starting to download pdflib-3.0.4.tgz (27,043 bytes).........done: 27,043 bytes
7 source files, building
WARNING: php_bin /Applications/mampstack-5.6.19-0/php/bin/php appears to have a suffix /bin/php, but config variable php_suffix does not match
running: phpize
Configuring for:
PHP Api Version:         20131106
Zend Module Api No:      20131226
Zend Extension Api No:   220131226
path to pdflib installation? : Downloads/pdflib/opt/local/include
building in /private/tmp/pear/temp/pear-build-rootzX8tkK/pdflib-3.0.4
running: /private/tmp/pear/temp/pdflib/configure --with-pdflib=Downloads/pdflib/opt/local/include
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for a sed that does not truncate output... /opt/local/bin/gsed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-apple-darwin14.5.0
checking host system type... x86_64-apple-darwin14.5.0
checking target system type... x86_64-apple-darwin14.5.0
checking for PHP prefix... /Applications/mampstack-5.6.19-0/php
checking for PHP includes... -I/Applications/mampstack-5.6.19- 0/php/include/php -I/Applications/mampstack-5.6.19-0/php/include/php/main -I/Applications/mampstack-5.6.19-0/php/include/php/TSRM -I/Applications/mampstack-5.6.19-0/php/include/php/Zend -I/Applications/mampstack-5.6.19-0/php/include/php/ext -I/Applications/mampstack-5.6.19-0/php/include/php/ext/date/lib
checking for PHP extension directory... /Applications/mampstack-5.6.19-0/php/lib/php/extensions
checking for PHP installed headers prefix... /Applications/mampstack-5.6.19-0/php/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... gawk
checking for PDFlib support... yes, shared
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C++ preprocessor... g++ -E
configure: error: pdflib.h not found! Check the path passed to --with-pdflib=<PATH>. PATH should be the install prefix directory.
ERROR: `/private/tmp/pear/temp/pdflib/configure --with-pdflib=Downloads/pdflib/opt/local/include' failed
bash-3.2$ 

1 个答案:

答案 0 :(得分:0)

Bitnami开发人员,

您可以按照以下步骤在MAMP堆栈上安装PDFlib

  • 下载PDFlib
  

$ cd / path / to / your / home / Downloads

     

$ wget http://www.pdflib.com/binaries/PDFlib/705/PDFlib-Lite-7.0.5p3.tar.gz

  • 解压缩
  

$ tar -xzf PDFlib-Lite-7.0.5p3.tar.gz   $ cd PDFlib-Lite-7.0.5p3

  • 构建
  

$ ./configure   $ sudo make   $ sudo make install

  • 通过pecl安装
  

$ pecl install pdflib

它会将pdf.so添加到您的extensions文件夹中,因此您应该检查它添加的位置。考虑到您的installdir,它应该是/Applications/mampstack-5.6.19-0/php/lib/php/extensions/pdf.so

  • 最后,你必须在你的`/Applications/mampstack-5.6.19-0/php/etc/php.ini中添加这一行:
  

延长= pdf.so

  • 然后重启Apache和php-fpm:
  

/Applications/mampstack-5.6.19-0/ctlscript.sh restart apache

     

/Applications/mampstack-5.6.19-0/ctlscript.sh重启php-fpm

您可以检查是否已加载执行此命令的扩展程序:

  

php -i | grep PDF