1

我正在尝试从http://www.ashberg.de/php-barcode/download/安装 genbarcode 0.4 。在 Centos 6.3 64 位上。

按照自述文件,我通过 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 中包含的自述文件从源代码编译和安装了条形码 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

任何帮助表示赞赏。

4

1 回答 1

1

尝试安装barcode-devel,该barcode软件包不包含开发/构建所需的文件barcode,例如头文件。

于 2013-08-06T12:54:24.750 回答