- 论坛徽章:
- 0
|
NOTE: There are patches for your configuration available. Please apply them before compiling.
找到源文件了
# check for patches
if [ -d $base/patches/$config ] ; then
echo "NOTE: There are patches for your configuration available. Please apply them before compiling."
fi
这是我编译一个c++ poco库,运行./configure 出来的。不知道怎么装补丁,
如果直接make的话,(sinclude config.make)linux都是可以用的
"Makefile", line 7: make: Dependency line needs colon or double colon operator.
"Makefile", line 9: make: Dependency line needs colon or double colon operator.
make: Equal sign not found in macro substitution.
下面是7-12行
7 sinclude config.make
8
9 ifndef POCO_BASE
10 $(warning WARNING: POCO_BASE is not defined. Assuming current directory.)
11 export POCO_BASE=$(shell pwd)
12 endif |
|