http://www.ashberg.de/php-barcode/download/から genbarcode 0.4 をインストールしようとしています。Centos 6.3 64bit で。
README に従って、yum (0.98-17.el6) 経由でバーコードをインストールし、genbarcode ディレクトリで make を実行しました。次に、次のエラーが表示されます。
creating depencies
rm -f .tmp.dep
gcc -M -Wall -I/usr/local/include ./genbarcode.c
./genbarcode.c:35:21: error: barcode.h: No such file or directory
make: *** [.dep] Error 123
また、genbarcode に含まれる README に従って、ソースからバーコード 0.99 をコンパイルしてインストールしましたが、同じエラーが発生します。また、「barcode.h」というファイルを genbarcode を使用してディレクトリに移動しようとしましたが、見つからない他の欠落ファイルに関するエラーが発生します。
genbarcode Makfile の 57 行目を次のように変更しました。
@find . -maxdepth 1 -name "*.c" -print0 | xargs -n 1 -0t $(CC) -M $(CFLAGS) >>.tmp.dep
元の警告を生成していたため:
@find . -name "*.c" -maxdepth 1 -print0 | xargs -n 1 -0t $(CC) -M $(CFLAGS) >>.tmp.dep
どんな助けでも大歓迎です。