i'm working on a "makefile" on an old version of php (php-5.3.22)
fatal error: ft2build.h: No such file or directory
# include <ft2build.h>
^
compilation terminated.
I have properly installed my freetype2 and I guess the above line is asking the file with the path "/usr/include/freetype2/ft2build.h"
how should I add in the above file to the above path?
(I can't use the gcc -c /usr/include/freetype2/
method since it will further refer to files in it while the current working path is /..../php-5.3.22)