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
b6468e4a
Commit
b6468e4a
authored
Jan 16, 2009
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Plain Diff
merged 5.0-main -> 5.0-bugteam
parents
68354269
e48b721d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
5 deletions
+20
-5
bdb/dist/s_all
bdb/dist/s_all
+15
-0
bdb/dist/s_include
bdb/dist/s_include
+3
-3
bdb/dist/s_recover
bdb/dist/s_recover
+1
-1
bdb/dist/s_rpc
bdb/dist/s_rpc
+1
-1
No files found.
bdb/dist/s_all
View file @
b6468e4a
#!/bin/sh -
# $Id: s_all,v 1.10 2001/08/04 14:01:44 bostic Exp $
# Search an AWK program, use GNU awk if available
for
x
in
gawk
awk
;
do
if
type
$x
;
then
AWK
=
$x
break
fi
done
if
test
-z
"
$AWK
"
;
then
echo
'No AWK program found'
exit
1
fi
export
AWK
# end of AWK search
sh s_dir
#sh s_perm # permissions.
...
...
bdb/dist/s_include
View file @
b6468e4a
...
...
@@ -79,7 +79,7 @@ for i in db btree clib common dbreg env fileops hash hmac \
[
$i
=
os
]
&&
f
=
"
$f
../os_win32/*.c"
[
$i
=
rpc_server
]
&&
f
=
"../
$i
/c/*.c"
[
$i
=
crypto
]
&&
f
=
"../
$i
/*.c ../
$i
/*/*.c"
awk
-f
gen_inc.awk
\
$AWK
-f
gen_inc.awk
\
-v
db_version_unique_name
=
$DB_VERSION_UNIQUE_NAME
\
-v
e_dfile
=
$e_dfile
\
-v
e_pfile
=
$e_pfile
\
...
...
@@ -97,7 +97,7 @@ done
# files.
for
i
in
dbm hsearch
;
do
f
=
"../
$i
/*.c"
awk
-f
gen_inc.awk
\
$AWK
-f
gen_inc.awk
\
-v
db_version_unique_name
=
$DB_VERSION_UNIQUE_NAME
\
-v
e_dfile
=
$e_dfile
\
-v
e_pfile
=
$e_pfile
\
...
...
@@ -142,7 +142,7 @@ head space defonly _DB_EXT_185_DEF_IN_ > $e_dfile
head
space _DB_EXT_185_PROT_IN_
>
$e_pfile
f
=
"../db185/*.c"
awk
-f
gen_inc.awk
\
$AWK
-f
gen_inc.awk
\
-v
db_version_unique_name
=
$DB_VERSION_UNIQUE_NAME
\
-v
e_dfile
=
$e_dfile
\
-v
e_pfile
=
$e_pfile
\
...
...
bdb/dist/s_recover
View file @
b6468e4a
...
...
@@ -45,7 +45,7 @@ cmp $loglist $f > /dev/null 2>&1 ||
for
i
in
db dbreg btree fileops
hash
qam txn
;
do
for
f
in
../
$i
/
*
.src
;
do
subsystem
=
`
basename
$f
.src
`
awk
-f
gen_rec.awk
\
$AWK
-f
gen_rec.awk
\
-v
source_file
=
$source
\
-v
header_file
=
$header
\
-v
template_file
=
$template
<
$f
...
...
bdb/dist/s_rpc
View file @
b6468e4a
...
...
@@ -43,7 +43,7 @@ rm -f $client_file \
xidsize
=
\
`
awk
'/^#define/ { if ($2 == "DB_XIDDATASIZE") { print $3 }}'
$dbinc_file
`
awk
-f
gen_rpc.awk
\
$AWK
-f
gen_rpc.awk
\
-v
major
=
$DB_VERSION_MAJOR
\
-v
minor
=
$DB_VERSION_MINOR
\
-v
xidsize
=
$xidsize
\
...
...
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