diff options
author | lenz@mysql.com <> | 2002-07-15 18:26:11 +0200 |
---|---|---|
committer | lenz@mysql.com <> | 2002-07-15 18:26:11 +0200 |
commit | 3258f23d9925fe2f4405e5ffbcb3527e2ec07b21 (patch) | |
tree | 7bbc1431086d8f60702c6d6e2ad89eec7fe88075 /os2/MySQL-Opt.icc | |
parent | c620486287474966db38e44f8be891622e9af495 (diff) | |
download | mariadb-git-3258f23d9925fe2f4405e5ffbcb3527e2ec07b21.tar.gz |
- Updated OS/2 port with files provided by Yuri Dario <mc6530@mclink.it>
from TeamOS/2 Italy
- removed some obsolete files on Yuri's request
- Added missing os2 related files outside the os2 subdirectory
to the distribution
Diffstat (limited to 'os2/MySQL-Opt.icc')
-rw-r--r-- | os2/MySQL-Opt.icc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/os2/MySQL-Opt.icc b/os2/MySQL-Opt.icc index 7045f111d9b..56e89057862 100644 --- a/os2/MySQL-Opt.icc +++ b/os2/MySQL-Opt.icc @@ -1,6 +1,9 @@ // set to 1 to enable debug code debug_build = 0 +// set to zlib relative directory name +zlib_dir = '../../zlib-1.1.4' + // common options option BaseOptions = link(defaultlibsname, "tcpip32.lib") , link(libsearchpath, "..\\lib\\") @@ -9,6 +12,7 @@ option BaseOptions = link(defaultlibsname, "tcpip32.lib") , link(padding, no) , link(linkwithmultithreadlib, "yes") , link(linkwithsharedlib, "no") + , link(stack, 131072, 131072) , gen(initauto, "yes") , define("__MT__", ) , define("HAVE_BSD_SIGNALS", ) @@ -19,11 +23,12 @@ option BaseOptions = link(defaultlibsname, "tcpip32.lib") , define("USE_TLS", ) , lang(signedchars, yes) , incl(searchpath, "..") + , incl(searchpath, "include") , incl(searchpath, "..\\include") , incl(searchpath, "..\\my_sys") , incl(searchpath, "..\\regex") , incl(searchpath, "..\\sql") - , incl(searchpath, "..\\..\\zlib-1.1.3") + , incl(searchpath, zlib_dir) , incl(searchpath, "..\\..\\ufc") , incl(searchpath, "..\\os2") |