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
55cb8679
Commit
55cb8679
authored
Feb 03, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/space/my/mysql-4.1
into mysql.com:/space/my/mysql-4.1-build
parents
e1134143
a46ca55c
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
41 additions
and
21 deletions
+41
-21
Makefile.am
Makefile.am
+4
-0
bdb/Makefile.in
bdb/Makefile.in
+7
-6
cmd-line-utils/libedit/Makefile.am
cmd-line-utils/libedit/Makefile.am
+3
-1
scripts/Makefile.am
scripts/Makefile.am
+11
-10
scripts/fill_help_tables.sh
scripts/fill_help_tables.sh
+15
-3
scripts/mysql_install_db.sh
scripts/mysql_install_db.sh
+1
-1
No files found.
Makefile.am
View file @
55cb8679
...
...
@@ -75,6 +75,10 @@ init-db: all
bin-dist
:
all
$(top_builddir)
/scripts/make_binary_distribution
# Remove BK's "SCCS" subdirectories from source distribution
dist-hook
:
rm
-rf
`
find
$(distdir)
-type
d
-name
SCCS
`
tags
:
support-files/build-tags
.PHONY
:
init-db bin-dist
...
...
bdb/Makefile.in
View file @
55cb8679
...
...
@@ -24,12 +24,13 @@ top_srcdir = @top_srcdir@
bdb_build
=
build_unix
files
=
LICENSE Makefile Makefile.in README
subdirs
=
btree build_vxworks build_win32 clib common cxx db db185
\
db_archive db_checkpoint db_deadlock db_dump db_dump185 db_load
\
db_printlog db_recover db_stat db_upgrade db_verify dbm dist
\
env
examples_c examples_cxx
hash
hsearch include java libdb_java
\
lock log mp mutex os os_vxworks os_win32 perl.BerkeleyDB
\
perl.DB_File qam rpc_client rpc_server tcl
test
txn xa
subdirs
=
btree build_vxworks build_win32 clib common cxx db dbinc
\
dbinc_auto db185 db_archive db_checkpoint db_deadlock db_dump
\
db_dump185 db_load db_printlog db_recover db_stat db_upgrade
\
db_verify dbm dbreg dist
env
examples_c examples_cxx fileops
hash
\
hsearch hmac include java libdb_java lock log mp mutex os os_vxworks
\
os_win32 perl.BerkeleyDB perl.DB_File qam rep rpc_client rpc_server tcl
\
test
txn xa
@SET_MAKE@
...
...
cmd-line-utils/libedit/Makefile.am
View file @
55cb8679
...
...
@@ -20,10 +20,12 @@ pkginclude_HEADERS = readline/readline.h
noinst_HEADERS
=
chared.h el.h histedit.h key.h
\
parse.h refresh.h sig.h sys.h
\
tokenizer.h compat.h fgetln.h
\
tokenizer.h compat.h
compat_conf.h
fgetln.h
\
hist.h map.h prompt.h search.h
\
strlcpy.h term.h tty.h
EXTRA_DIST
=
makelist
DEFS
=
-DUNDEF_THREADS_HACK
-DHAVE_CONFIG_H
-DNO_KILL_INTR
vi.h
:
vi.c makelist
...
...
scripts/Makefile.am
View file @
55cb8679
...
...
@@ -53,12 +53,12 @@ EXTRA_SCRIPTS = make_binary_distribution.sh \
mysqld_multi.sh
\
mysql_tableinfo.sh
\
mysqld_safe.sh
\
fill_
func
_tables.sh
fill_
help
_tables.sh
EXTRA_DIST
=
$(EXTRA_SCRIPTS)
\
mysqlaccess.conf
\
mysqlbug
\
fill_func
_tables.sql
fill_help
_tables.sql
pkgdata_DATA
=
make_binary_distribution
...
...
@@ -79,7 +79,8 @@ CLEANFILES = @server_scripts@ \
mysqlhotcopy
\
mysqldumpslow
\
mysqld_multi
\
fill_func_tables.sql
fill_help_tables
\
fill_help_tables.sql
SUPERCLEANFILES
=
mysqlbug
...
...
@@ -134,7 +135,7 @@ SUFFIXES = .sh
# Don't update the files from bitkeeper
%
::
SCCS/s.%
all
:
fill_
func
_tables.sql
all
:
fill_
help
_tables.sql
fill_func_tables.sql
:
fill_func_tables ../Docs/manual.texi
./fill_func_tables < ../Docs/manual.texi
>
fill_func_tables.sql
\ No newline at end of file
fill_help_tables.sql
:
fill_help_tables ../Docs/manual.texi
./fill_help_tables < ../Docs/manual.texi
>
fill_help_tables.sql
scripts/fill_
func
_tables.sh
→
scripts/fill_
help
_tables.sh
View file @
55cb8679
#!@PERL@
# fill_func_tables - parse ../Docs/manual.texi
# Original version by vva
#
# Usage: fill_help_tables <manual.texi>
# Example: ./fill_help_tables < ../Docs/manual.texi > fill_help_tables.sql
#
# This script generates the SQL statements required by mysql_install_db to
# fill up the tables for the server-side online function help, which can be
# invoked with "help <function>" from the MySQL client.
#
# Please note, that you first need to update Docs/manual.texi with the
# manual file from the separate "mysqldoc" BitKeeper-Tree! The manual.texi
# included in the source tree is just an empty stub file - the full manual
# is now maintained in a separate tree.
#
# Original version by Victor Vagin <vva@mysql.com>
#
my
$cat_name
=
""
;
my
$func_name
=
""
;
...
...
scripts/mysql_install_db.sh
View file @
55cb8679
...
...
@@ -325,7 +325,7 @@ $i_f
$c_t
$c_c
END_OF_DATA
cat
fill_
func
_tables.sql
cat
fill_
help
_tables.sql
)
|
eval
"
$execdir
/mysqld
$defaults
--bootstrap --skip-grant-tables
\
--basedir=
$basedir
--datadir=
$ldata
--skip-innodb --skip-bdb
$args
"
then
...
...
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