Centos 6.3x86_64でpHash0.9.5をコンパイルしようとしています。これまでに実行した手順の詳細は次のとおりです。
$ yum install unzip
$ wget https://downloads.sourceforge.net/project/cimg/CImg-1.5.4.Zip
$ unzip CImg-1.5.4.Zip
$
$ wget http://phash.org/releases/pHash-0.9.5.tar.gz
$ tar xvf pHash-0.9.5.tar.gz
$
$ cp CImg-1.5.4/CImg.h pHash-0.9.5/src/
$
$ cd pHash-0.9.5
$ ./configure --enable-video-hash=no --enable-audio-hash=no
$ make
$ make install
次に、pHashをインストールしたら、次のようにphp拡張機能をインストールしようとしました。
$ cd bindings/php
$ phpize
$ ./configure
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
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-unknown-linux-gnu
checking Host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib
checking for PHP extension directory... /usr/lib64/php/modules
checking for PHP installed headers prefix... /usr/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 whether pHash is available... 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
checking for pHash in default path... found in /usr/local
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking pHash.h usability... no
checking pHash.h presence... no
checking for pHash.h... no
configure: error: 'pHash.h' header not found
$
したがって、pHashは正しくインストールされているようですchecking for pHash in default path... found in /usr/local
が、pHash.h
が見つかりません。
pHash.h
は/usr/local/include
にあります。 configureスクリプトをデバッグして、このファイルが見つからない理由を確認しようとしていますが、今のところ、実際には成功していません。
誰かがアイデアを持っているなら、私は大いに感謝します。ありがとう。
マキシム
更新:
どうやらconfig.log
によると:これはCImg.hライブラリが原因であるため、このヘッダーファイルをどこかに登録する必要があるのではないかと思います...
configure:5136: checking pHash.h usability
configure:5153: g++ -c -g -O2 -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib -I/usr/local/include -DHAVE_PHASH conftest.cpp >&5
In file included from conftest.cpp:51:
/usr/local/include/pHash.h:50:18: error: CImg.h: No such file or directory
In file included from conftest.cpp:51:
/usr/local/include/pHash.h:51: error: 'cimg_library' is not a namespace-name
/usr/local/include/pHash.h:51: error: expected namespace-name before ';' token
In file included from conftest.cpp:51:
/usr/local/include/pHash.h:144: error: expected ';' before '<' token
/usr/local/include/pHash.h:211: error: expected ',' or '...' before '<' token
/usr/local/include/pHash.h:250: error: expected ',' or '...' before '<' token
/usr/local/include/pHash.h:273: error: expected ',' or '...' before '<' token
In file included from conftest.cpp:51:
/usr/local/include/pHash.h:292: error: expected initializer before '<' token
PDATE2:
わかりました。cpp -Wp,-v
を実行して、プリコンパイラによってロードされたデフォルトのパスを確認しました。
$ cpp -Wp,-v
ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.4.7/include-fixed"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../x86_64-redhat-linux/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/local/include
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/include
/usr/include
End of search list.
したがって、/usr/local/include
はデフォルトのパスの一部であるため、このフォルダーにCImg.h
をコピーして、./configure
を再度実行してみます。 audiophash.h
に問題がありますが、これは明らかに既知の問題です。
私はそれを修正しようとし、うまくいけば私の質問に答えるためにここに戻ってきます。
さて、ここに完全な答えがあります:
必要なライブラリをダウンロードする
_$ cd ~/download
$ yum install libsndfile-devel unzip
$ wget https://downloads.sourceforge.net/project/cimg/CImg-1.5.4.Zip
$ wget http://phash.org/releases/pHash-0.9.5.tar.gz
$ wget http://www.mega-nerd.com/SRC/libsamplerate-0.1.8.tar.gz
$ wget http://sourceforge.net/projects/mpg123/files/mpg123/1.15.1/mpg123-1.15.1.tar.bz2/download
_
PHashに必要なライブラリをコンパイルします。 PHP拡張子があるため、音声と画像のサポートを有効にする必要があります。
_$ tar xvf libsamplerate-0.1.8.tar.gz
$ cd libsamplerate-0.1.8
$ ./configure
$ make && make install
$
$ tar xvf mpg123-1.15.1
$ cd mpg123-1.15.1
$ ./configure
$ make && make install
We need to copy CImg.h in the /user/local/include folder
$ unzip CImg-1.5.4.Zip
$ cp CImg-1.5.4/CImg.h /usr/local/include
_
PHashライブラリをコンパイルする
_$ tar xvf pHash-0.9.5.tar.gz
$ cd pHash-0.9.5
$ ./configure --enable-video-hash=no
$ make && make install
Compile the PHP extension
$ cd bindings/php
$ phpize
$ ./configure LIBS="-lpthread"
_
PHash.cppを編集する
コンパイルエラーを修正するには、pHash.cppを編集する必要がありました。 php> = 5.3を使用している場合にのみ実行する必要があると思います
_$ vi /root/download/pHash-0.9.5/bindings/php/pHash.cpp
# line 106, replace "function_entry" by "zend_function_entry"
# save and close
Finish the compilation
$ make
$ make test
$ make install
# finally enable pHash in the php.ini adding extension=pHash.so
# restart Apache
_
オプション-ハッシュをデータベース(SQL)に保存する場合:
ハッシュへの戻り値を変更するには、pHash.cppを編集する必要があります。
デフォルトでは、ph_dct_imagehash($file)
は_*ulong64
_(ポインタ)を返します。データベースに格納するために文字列を取得する必要があります。
参照: https://github.com/lucidix/phash/commit/5be2d454c932152e9b2395e21f97a008c6bd8766
これは少し話題から外れていることは知っていますが、Ubuntu 12.04 LTSAMD64にpHash + php拡張機能をインストールするのに苦労したので、インストールログも共有しています:
$ Sudo apt-get install make libsndfile-dev checkinstall
$ Sudo apt-get install cimg-dev libjpeg62 libfftw3-3 imagemagick graphicsmagick
$ wget http://downloads.sourceforge.net/project/libpng/libpng15/1.5.18/libpng-1.5.18.tar.gz
$ tar xvf libpng-1.5.18.tar.gz
$ cd libpng-1.5.18
$ ./configure
$ make check
$ make install
cimgには多くの依存関係があり、ビットマップ以外の形式を操作する必要がある場合に必要です(変換を自分で処理したくない場合)。
libjpeg62 => jpegサポート
libpng15 => pngサポート
libfftw3-3 =>フーリエ変換
imagemagick =>フォーマット変換用
graphicsmagick => imagemagickフォーク、必須
$ Sudo apt-get install libsamplerate0-dev libmpg123-dev
これらの2つのライブラリは、オーディオハッシュに必要です。現在、phpバインディングでは、コンパイルするためにオーディオハッシュを有効にするpHashライブラリが必要です( http://lists.phash.org/htdig.cgi/phash-support-phash.org/2012-December/000139.htmlを参照) )
$ cd
$ wget http://phash.org/releases/pHash-0.9.6.tar.gz
$ tar xvf pHash-0.9.6.tar.gz
$ cd pHash-0.9.6
$ ./configure --enable-openmp=yes --enable-video-hash=no LIBS='-lpthread'
$ make
$ Sudo checkinstall --pkgname=phash --pkgversion="1:$(date +%Y%m%d%H%M)-0.9.6" --backup=no \
--deldoc=yes --fstrans=no --default
私はcheckinstallを使用してphashパッケージを作成および管理していますが、代わりにmakeinstallを使用できます。 LIBS = '-lpthread'は、configureスクリプトにlpthreadライブラリを使用するように指示します(そうでない場合、私のマシンではコンパイルされません)
出荷されたphpバインディングは、APIバージョンの問題があいまいなため、私のphpバージョン(5.3)でコンパイルすると機能しないため、代わりにこのソースを使用しました。
$ cd
$ git clone --depth=1 http://github.com/Alexis2004/php-phash
$ cd php-phash
$ pear install CodeGen_PECL
$ ./compile.sh
$ make test
$ make install
今やらなければならないのは、php.iniファイルに「extension = pHash.so」を追加することだけです。これで準備完了です。
@ maxwell2022の実装は、libpngとffmpegをカバーしていませんでした。これらの依存関係がなければ、PHPバインディングは私にはできませんでした。
これが私のインストールログです:
yum install libsndfile-devel -y
cd
wget http://www.mega-nerd.com/SRC/libsamplerate-0.1.8.tar.gz
tar xvf libsamplerate-0.1.8.tar.gz
cd libsamplerate-0.1.8
./configure
make && make install
cd
wget http://sourceforge.net/projects/mpg123/files/mpg123/1.15.4/mpg123-1.15.4.tar.bz2/download
tar xvf mpg123-1.15.4.tar.bz2
cd mpg123-1.15.4
./configure
make && make install
cd
wget http://sourceforge.net/projects/libpng/files/libpng15/1.5.17/libpng-1.5.17.tar.gz/download
tar xvf libpng-1.5.17.tar.gz
cd libpng-1.5.17
./configure
make && make install
cd
wget https://downloads.sourceforge.net/project/cimg/CImg-1.5.6.Zip
unzip CImg-1.5.6.Zip
cp CImg-1.5.6/CImg.h /usr/local/include
su -c 'yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/el/updates/6/i386/rpmfusion-free-release-6-1.noarch.rpm http://download1.rpmfusion.org/nonfree/el/updates/6/i386/rpmfusion-nonfree-release-6-1.noarch.rpm'
yum install ffmpeg ffmpeg-devel libpng-devel -y
ln -s /usr/include/ffmpeg/libavutil /usr/include/libavutil
ln -s /usr/include/ffmpeg/libavformat /usr/include/libavformat
ln -s /usr/include/ffmpeg/libavcodec /usr/include/libavcodec
ln -s /usr/include/ffmpeg/libswscale /usr/include/libswscale
cd
wget http://phash.org/releases/pHash-0.9.6.tar.gz
tar xvf pHash-0.9.6.tar.gz
cd pHash-0.9.6
./configure
make && make install
cd bindings/php
phpize
./configure
make
make install
echo 'extension=pHash.so' > /etc/php.d/phash.ini
そして、最初からやり直す必要がある場合に備えて...すばやくクリーンアップします。
cd ~/libsamplerate-0.1.8 && make uninstall
cd && rm -fr libsamplerat*
cd ~/mpg123-1.15.4 && make uninstall
cd && rm -fr mpg123-1.15.*
cd ~/libpng-1.5.17 && make uninstall
cd && rm -fr libpng-1.5.*
cd ~/pHash-0.9.6 && make uninstall
cd && rm -fr pHash*
rm -fr ~/CImg-1.5.6
rm -f CImg*
rm -f /usr/local/include/CImg.h