mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 10:13:51 +01:00
fixed release scripts
This commit is contained in:
parent
984d8a5617
commit
5ff5d24fb3
29
configure
vendored
29
configure
vendored
@ -73,9 +73,12 @@ Options:
|
||||
--library-path=<path>
|
||||
Add search path for library files.
|
||||
|
||||
--odbc-lib-dir=<path>
|
||||
--odbc-lib=<path>
|
||||
Specify the directory where ODBC library is located.
|
||||
|
||||
--odbc-include=<path>
|
||||
Specify the directory where ODBC header files are located.
|
||||
|
||||
--cflags=<flags>
|
||||
Pass additional flags to compiler.
|
||||
Example: --cflags=-wall
|
||||
@ -114,7 +117,8 @@ flags=""
|
||||
omit=""
|
||||
includepath=""
|
||||
librarypath=""
|
||||
odbclibdir="/usr/lib"
|
||||
odbclib=""
|
||||
odbcinclude=""
|
||||
unbundled=""
|
||||
static=""
|
||||
shared=""
|
||||
@ -139,8 +143,11 @@ while [ $# -ge 1 ]; do
|
||||
--library-path=*)
|
||||
librarypath="`echo ${1} | awk '{print substr($0,16)}' | tr ',;' ' '`" ;;
|
||||
|
||||
--odbc-lib-dir=*)
|
||||
odbclibdir="`echo ${1} | awk '{print substr($0,16)}'`" ;;
|
||||
--odbc-lib=*)
|
||||
odbclib="`echo ${1} | awk '{print substr($0,16)}'`" ;;
|
||||
|
||||
--odbc-include=*)
|
||||
odbcinclude="`echo ${1} | awk '{print substr($0,16)}'`" ;;
|
||||
|
||||
--cflags=*)
|
||||
cflags="`echo ${1} | awk '{print substr($0,10)}'`" ;;
|
||||
@ -254,8 +261,11 @@ fi
|
||||
if [ -n "$librarypath" ] ; then
|
||||
echo "POCO_ADD_LIBRARY = $librarypath" >>$build/config.make
|
||||
fi
|
||||
if [ -n "$odbclibdir" ] ; then
|
||||
echo "POCO_ODBC_LIB_DIR = $odbclibdir" >>$build/config.make
|
||||
if [ -n "$odbclib" ] ; then
|
||||
echo "POCO_ODBC_LIB = $odbclib" >>$build/config.make
|
||||
fi
|
||||
if [ -n "$odbcinclude" ] ; then
|
||||
echo "POCO_ODBC_INCLUDE = $odbcinclude" >>$build/config.make
|
||||
fi
|
||||
if [ -n "$unbundled" ] ; then
|
||||
echo "POCO_UNBUNDLED = 1" >>$build/config.make
|
||||
@ -281,8 +291,11 @@ fi
|
||||
if [ -n "$librarypath" ] ; then
|
||||
echo "export POCO_ADD_LIBRARY" >>$build/config.make
|
||||
fi
|
||||
if [ -n "$odbclibdir" ] ; then
|
||||
echo "export POCO_ODBC_LIB_DIR" >>$build/config.make
|
||||
if [ -n "$odbclib" ] ; then
|
||||
echo "export POCO_ODBC_LIB" >>$build/config.make
|
||||
fi
|
||||
if [ -n "$odbcinclude" ] ; then
|
||||
echo "export POCO_ODBC_INCLUDE" >>$build/config.make
|
||||
fi
|
||||
if [ -n "$unbundled" ] ; then
|
||||
echo "export POCO_UNBUNDLED" >>$build/config.make
|
||||
|
@ -201,6 +201,7 @@ cat >${target}/Makefile <<'ENDOFSCRIPT'
|
||||
#
|
||||
|
||||
sinclude config.make
|
||||
sinclude config.build
|
||||
|
||||
ifndef POCO_BASE
|
||||
$(warning WARNING: POCO_BASE is not defined. Assuming current directory.)
|
||||
|
Loading…
Reference in New Issue
Block a user