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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
833ec165
Commit
833ec165
authored
May 27, 2004
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netware files should always be in 'make dist'
use opt_net_buffer_length instead of net_buffer_length
parent
dab0b7d4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
5 deletions
+29
-5
Makefile.am
Makefile.am
+1
-2
client/mysqldump.c
client/mysqldump.c
+2
-2
configure.in
configure.in
+1
-0
netware/Makefile.am
netware/Makefile.am
+25
-1
No files found.
Makefile.am
View file @
833ec165
...
...
@@ -23,9 +23,8 @@ EXTRA_DIST = INSTALL-SOURCE README COPYING
SUBDIRS
=
.
include @docs_dirs@ @readline_dir@
\
@thread_dirs@ pstack @sql_client_dirs@
\
@sql_server_dirs@ scripts man tests
\
BUILD
@netware_dir@
os2 @libmysqld_dirs@
\
BUILD
netware
os2 @libmysqld_dirs@
\
@bench_dirs@ support-files @fs_dirs@ @tools_dirs@
# Relink after clean
linked_sources
=
linked_client_sources linked_server_sources
\
...
...
client/mysqldump.c
View file @
833ec165
...
...
@@ -1080,7 +1080,7 @@ static void dumpTable(uint numFields, char *table)
if
(
opt_lock
)
fprintf
(
md_result_file
,
"LOCK TABLES %s WRITE;
\n
"
,
opt_quoted_table
);
total_length
=
net_buffer_length
;
/* Force row break */
total_length
=
opt_
net_buffer_length
;
/* Force row break */
row_break
=
0
;
rownr
=
0
;
init_length
=
(
uint
)
strlen
(
insert_pat
)
+
4
;
...
...
@@ -1225,7 +1225,7 @@ static void dumpTable(uint numFields, char *table)
ulong
row_length
;
dynstr_append
(
&
extended_row
,
")"
);
row_length
=
2
+
extended_row
.
length
;
if
(
total_length
+
row_length
<
net_buffer_length
)
if
(
total_length
+
row_length
<
opt_
net_buffer_length
)
{
total_length
+=
row_length
;
fputc
(
','
,
md_result_file
);
/* Always row break */
...
...
configure.in
View file @
833ec165
...
...
@@ -2482,6 +2482,7 @@ if expr "$SYSTEM_TYPE" : ".*netware.*" > /dev/null; then
fi
AC_SUBST
(
netware_dir
)
AC_SUBST
(
linked_netware_sources
)
AM_CONDITIONAL
(
HAVE_NETWARE,
test
"
$netware_dir
"
=
"netware"
)
if
test
"
$with_server
"
=
"yes"
-o
"
$THREAD_SAFE_CLIENT
"
!=
"no"
then
...
...
netware/Makefile.am
View file @
833ec165
...
...
@@ -14,6 +14,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
if
HAVE_NETWARE
INCLUDES
=
-I
$(srcdir)
/../include
-I
../include
-I
..
bin_PROGRAMS
=
mysqld_safe mysql_install_db mysql_test_run libmysql
mysqld_safe_SOURCES
=
mysqld_safe.c my_manage.c
...
...
@@ -43,7 +44,30 @@ link_sources:
org
=
`
echo
$$
f |
sed
-e
's/.*\/\(.*\)/\1/g'
`
;
\
@LN_CP_F@
$(srcdir)
/
$$
org
$(srcdir)
/../
$$
f
;
\
done
;
else
EXTRA_DIST
=
comp_err.def init_db.sql install_test_db.ncf
\
isamchk.def isamlog.def libmysql.def libmysql.imp
\
libmysqlmain.c my_manage.c my_manage.h
\
my_print_defaults.def myisam_ftdump.def myisamchk.def
\
myisamlog.def myisampack.def mysql.def mysql.xdc
\
mysql_fix_privilege_tables.pl mysql_install.def
\
mysql_install_db.c mysql_install_db.def
\
mysql_secure_installation.pl mysql_test_run.c
\
mysql_test_run.def mysql_waitpid.def mysqladmin.def
\
mysqlbinlog.def mysqlcheck.def mysqld.def
\
mysqld_safe.c mysqld_safe.def mysqldump.def mysqlimport.def
\
mysqlshow.def mysqltest.def pack_isam.def perror.def
\
replace.def resolve_stack_dump.def resolveip.def test_db.sql
\
BUILD/apply-patch BUILD/compile-AUTOTOOLS
\
BUILD/compile-linux-tools BUILD/compile-netware-END
\
BUILD/compile-netware-START BUILD/compile-netware-all
\
BUILD/compile-netware-debug BUILD/compile-netware-max
\
BUILD/compile-netware-max-debug BUILD/compile-netware-src
\
BUILD/compile-netware-standard BUILD/create-patch
\
BUILD/cron-build BUILD/crontab BUILD/knetware.imp
\
BUILD/mwasmnlm BUILD/mwccnlm BUILD/mwenv BUILD/mwldnlm
\
BUILD/nwbootstrap BUILD/openssl.imp BUILD/save-patch
endif
# Don't update the files from bitkeeper
%
::
SCCS/s.%
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