我試圖(顯然成功)在mac os x mavericks上安裝libpng
。<png.h>沒有在mac os中找到X小牛
我下載了最新的1-6-8版本.tar.xz
並按照說明操作。
./configure
運行正常
make check
經過的一切,但PNG-錯誤都不會被跳過
sudo make install
顯然正常工作,因爲我的圖書館的libpng。出現。
現在,當我嘗試編譯,我需要編譯的C文件,使用字符串
clang -w -lz -lpng16 libpng_test.c
我得到的錯誤
fatal error: 'png.h' file not found
#include <png.h>
顯然它不能編譯。
我都嘗試用自制的MacPorts和安裝,它似乎總是運行良好,但我總是得到同樣的錯誤
「-lz」 應遵循 「-lpng16」在你的編譯命令上。不確定這是你的問題的解釋。 –