Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
bcf376b9
Commit
bcf376b9
authored
Sep 26, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge neptunus.(none):/home/msvensson/mysql/netware/my50-netware
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
parents
f21ac7b6
83717cb7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
12 deletions
+36
-12
netware/BUILD/mwccnlm
netware/BUILD/mwccnlm
+6
-3
netware/BUILD/mwenv
netware/BUILD/mwenv
+28
-8
netware/Makefile.am
netware/Makefile.am
+2
-1
No files found.
netware/BUILD/mwccnlm
View file @
bcf376b9
...
...
@@ -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
...
...
netware/BUILD/mwenv
View file @
bcf376b9
#! /bin/sh
# F:/mydev, /home/kp/mydev, and 4.0.21 must be correct before compiling
# This values are normally changed by the nwbootstrap script
if
test
!
-r
./sql/mysqld.cc
then
echo
"you must start from the top source directory"
exit
1
fi
# the default is "F:/mydev"
export
MYDEV
=
"F:/mydev"
# The base path(in wineformat) where compilers, includes and
# libraries are installed
if
test
-z
$MYDEV
then
# the default is "F:/mydev"
export
MYDEV
=
"F:/mydev"
fi
echo
"MYDEV:
$MYDEV
"
export
MWCNWx86Includes
=
"
$MYDEV
/libc/include;
$MYDEV
/fs64/headers;
$MYDEV
/zlib-1.1.4;
$MYDEV
/mysql-VERSION/include;
$MYDEV
"
export
MWNWx86Libraries
=
"
$MYDEV
/libc/imports;
$MYDEV
/mw/lib;
$MYDEV
/fs64/imports;
$MYDEV
/zlib-1.1.4;
$MYDEV
/openssl;
$MYDEV
/mysql-VERSION/netware/BUILD"
# Get current dir
BUILD_DIR
=
`
pwd
`
echo
"BUILD_DIR:
$BUILD_DIR
"
# Get current dir in wine format
base
=
`
echo
$MYDEV
|sed
's/\/.*//'
`
base_unix_part
=
`
winepath
--
-u
$base
`
WINE_BUILD_DIR
=
`
echo
"
$BUILD_DIR
"
|
sed
's_'
$base_unix_part
'/__'
`
WINE_BUILD_DIR
=
"
$base$WINE_BUILD_DIR
"
echo
"WINE_BUILD_DIR:
$WINE_BUILD_DIR
"
export
MWCNWx86Includes
=
"
$MYDEV
/libc/include;
$MYDEV
/fs64/headers;
$MYDEV
/zlib-1.2.3;
$WINE_BUILD_DIR
/include;
$MYDEV
"
export
MWNWx86Libraries
=
"
$MYDEV
/libc/imports;
$MYDEV
/mw/lib;
$MYDEV
/fs64/imports;
$MYDEV
/zlib-1.2.3;
$MYDEV
/openssl;
$WINE_BUILD_DIR
/netware/BUILD"
export
MWNWx86LibraryFiles
=
"libcpre.o;libc.imp;netware.imp;mwcrtl.lib;mwcpp.lib;libz.a;neb.imp;zPublics.imp;knetware.imp"
export
WINEPATH
=
"
$MYDEV
/mw/bin"
# the default added path is "$
HOME/mydev/mysql-x.x-x
/netware/BUILD"
export
PATH
=
"
$PATH
:
BUILD_DIR/mysql-VERSION
/netware/BUILD"
# the default added path is "$
BUILD_DIR
/netware/BUILD"
export
PATH
=
"
$PATH
:
$BUILD_DIR
/netware/BUILD"
export
AR
=
'mwldnlm'
export
AR_FLAGS
=
'-type library -o'
...
...
netware/Makefile.am
View file @
bcf376b9
...
...
@@ -23,7 +23,8 @@ mysqld_safe_SOURCES= mysqld_safe.c my_manage.c
mysql_install_db_SOURCES
=
mysql_install_db.c my_manage.c
mysql_test_run_SOURCES
=
mysql_test_run.c my_manage.c
libmysql_SOURCES
=
libmysqlmain.c
libmysql_LDADD
=
../libmysql/.libs/libmysqlclient.a @openssl_libs@
libmysql_LDADD
=
../libmysql/.libs/libmysqlclient.a
\
@openssl_libs@ @yassl_libs@
netware_build_files
=
client/mysql.def client/mysqladmin.def
\
client/mysqlbinlog.def client/mysqlcheck.def
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment