diff options
author | unknown <msvensson@neptunus.(none)> | 2006-09-22 17:43:05 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-09-22 17:43:05 +0200 |
commit | 3c7b5e3e99282bf641bb477f29f15275b5cab3c8 (patch) | |
tree | 628516bb44559fa802bae900bda93c4bb8cc928c /netware/BUILD/mwccnlm | |
parent | 24cdd48020634acc1c2c2309a5c27d28368e0ba9 (diff) | |
download | mariadb-git-3c7b5e3e99282bf641bb477f29f15275b5cab3c8.tar.gz |
Netware changes for build with yaSSL
- Make mwenv automatically adapt the setting to current build dir.
- Fix include paths that mwccnlm does not understand
- Link libmysl with yassl
netware/BUILD/mwccnlm:
Update mwccnlm to convert -I../.. to -I../../
netware/BUILD/mwenv:
Automatically detect current build dir and based on that calculate current build dir in winw format.
Allow caller to define MYDEV to override the defatul "F:/mydev"
Set all paths from these three variables
netware/Makefile.am:
Link libmysql with yassl_libs
Diffstat (limited to 'netware/BUILD/mwccnlm')
-rwxr-xr-x | netware/BUILD/mwccnlm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/netware/BUILD/mwccnlm b/netware/BUILD/mwccnlm index e6840e781f8..030d87288f2 100755 --- a/netware/BUILD/mwccnlm +++ b/netware/BUILD/mwccnlm @@ -3,9 +3,12 @@ # stop on errors set -e -# mwccnlm is having a hard time understanding "-I./../include" -# convert it to "-I../include" -args=" "`echo $* | sed -e 's/-I.\/../-I../g'` +# mwccnlm is having a hard time understanding: +# * "-I./../include", convert it to "-I../include" +# * "-I.../..", convert it to "-I../../" +args=" "`echo $* | sed \ +-e 's/-I.\/../-I../g' \ +-e 's/\(-I[.\/]*.\) /\1\/ /g'` # NOTE: Option 'pipefail' is not standard sh set -o pipefail |