You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to build the php extension, on the configure step: ./configure LIBS="-lpthread" --with-pHash="/usr/local"
checking for pHash in default path... found in /usr/local
....
error: 'pHash.h' header not found.
I verified that:
pHash.h is in /usr/local/include/pHash.h
and lib is also installed in /usr/local/lib/libpHash.so.1.0.0
The text was updated successfully, but these errors were encountered:
It turned that the simple compile guide is missing a lot: To make 'pHash.h' to be "found", we need also: sudo apt-get install libavformat-dev libmpg123-dev libsamplerate-dev libsndfile-dev sudo apt-get install cimg-dev libavcodec-dev ffmpeg libswscale-dev which in turn needs OpenCV,
so total of +1 GB worth of dependencies.
Now, we have:
Trying to build the php extension, on the configure step:
./configure LIBS="-lpthread" --with-pHash="/usr/local"
checking for pHash in default path... found in /usr/local
....
error: 'pHash.h' header not found.
I verified that:
pHash.h is in /usr/local/include/pHash.h
and lib is also installed in /usr/local/lib/libpHash.so.1.0.0
The text was updated successfully, but these errors were encountered: