mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
fixed SF #597: Configure script ignores cflags
This commit is contained in:
parent
e3d49fe766
commit
ccd66358b9
@ -16,6 +16,7 @@ Release 1.5.0 (2012-12-17)
|
|||||||
- TypeHandler::prepare() now takes const-reference
|
- TypeHandler::prepare() now takes const-reference
|
||||||
- fixed GH #27: Poco::URI::decode() doesn't properly handle '+'
|
- fixed GH #27: Poco::URI::decode() doesn't properly handle '+'
|
||||||
- fixed GH #31: JSON implementation bug
|
- fixed GH #31: JSON implementation bug
|
||||||
|
- fixed SF #597: Configure script ignores cflags
|
||||||
|
|
||||||
Release 1.5.0 (2012-10-14)
|
Release 1.5.0 (2012-10-14)
|
||||||
==========================
|
==========================
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -150,7 +150,7 @@ while [ $# -ge 1 ]; do
|
|||||||
odbcinclude="`echo ${1} | awk '{print substr($0,16)}'`" ;;
|
odbcinclude="`echo ${1} | awk '{print substr($0,16)}'`" ;;
|
||||||
|
|
||||||
--cflags=*)
|
--cflags=*)
|
||||||
cflags="`echo ${1} | awk '{print substr($0,10)}'`" ;;
|
flags="`echo ${1} | awk '{print substr($0,10)}'`" ;;
|
||||||
|
|
||||||
--no-samples)
|
--no-samples)
|
||||||
samples="" ;;
|
samples="" ;;
|
||||||
|
Loading…
Reference in New Issue
Block a user