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
9286527f
Commit
9286527f
authored
Feb 16, 2001
by
tim@threads.polyesthetic.msg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates to use db-3.2.9a.
parent
a1842feb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
12 deletions
+16
-12
acinclude.m4
acinclude.m4
+12
-11
configure.in
configure.in
+4
-1
No files found.
acinclude.m4
View file @
9286527f
...
@@ -812,23 +812,24 @@ AC_DEFUN([MYSQL_CHECK_BDB_VERSION], [
...
@@ -812,23 +812,24 @@ AC_DEFUN([MYSQL_CHECK_BDB_VERSION], [
test -z "$db_minor" && db_minor=0
test -z "$db_minor" && db_minor=0
test -z "$db_patch" && db_patch=0
test -z "$db_patch" && db_patch=0
if test $db_major -gt 3
# This is ugly, but about as good as it can get
then
mysql_bdb=
bdb_version_ok=yes
if test $db_major -eq 3 && test $db_minor -eq 2 && test $db_patch -eq 3
elif test $db_major -eq 3 && test $db_minor -gt 2
then
then
bdb_version_ok=yes
mysql_bdb=h
elif test $db_major -eq 3 && test $db_minor -eq 2 && test $db_patch -
gt 3
elif test $db_major -eq 3 && test $db_minor -eq 2 && test $db_patch -
eq 9
then
then
bdb_version_ok=yes
want_bdb_version="3.2.9a" # hopefully this will stay up-to-date
# This is ugly, but about as good as it can get
mysql_bdb=a
elif test $db_major -eq 3 && test $db_minor -eq 2 && test $db_patch -eq 3 &&\
fi
grep 'DB_VERSION_STRING.*h: ' [$1] > /dev/null
if test -n "$mysql_bdb" && \
grep "DB_VERSION_STRING.*:.*$mysql_bdb: " [$1] > /dev/null
then
then
bdb_version_ok=yes
bdb_version_ok=yes
else
else
bdb_version_ok="invalid version $db_major.$db_minor.$db_patch"
bdb_version_ok="invalid version $db_major.$db_minor.$db_patch"
bdb_version_ok="$bdb_version_ok (must be
at least version 3.2.3g
)"
bdb_version_ok="$bdb_version_ok (must be
version 3.2.3h or $want_bdb_version
)"
fi
fi
])
])
...
...
configure.in
View file @
9286527f
...
@@ -1881,7 +1881,10 @@ then
...
@@ -1881,7 +1881,10 @@ then
echo "Modifying Berkeley DB install target"
echo "Modifying Berkeley DB install target"
sed -e '
/^install:/ c
\
sed -e '
/^install:/ c
\
install
: all
# modified by MySQL configure' \
install
: all
# modified by MySQL configure\
dnl This is needed because
in
some versions of BDB the
install
target
dnl is continued on a second line.
mysql-noinstall-hack:
' \
"$bdb/build_unix/Makefile" > ac_BDB_Makefile
"$bdb/build_unix/Makefile" > ac_BDB_Makefile
rm "$bdb/build_unix/Makefile" \
rm "$bdb/build_unix/Makefile" \
...
...
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