fixed SF #597: Configure script ignores cflags

This commit is contained in:
Alex 2012-12-11 21:19:34 -06:00
parent e3d49fe766
commit ccd66358b9
2 changed files with 2 additions and 1 deletions

View File

@ -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
View File

@ -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="" ;;