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
d3a1c3a2
Commit
d3a1c3a2
authored
Jul 22, 2003
by
gluh@gluh.mysql.r18.ru
Browse files
Options
Browse Files
Download
Plain Diff
Merge sgluhov@bk-internal.mysql.com:/home/bk/mysql-4.0
into gluh.mysql.r18.ru:/home/gluh/mysql-4.0.fix
parents
60c91430
4ddbb817
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
13 deletions
+42
-13
acinclude.m4
acinclude.m4
+42
-13
No files found.
acinclude.m4
View file @
d3a1c3a2
...
@@ -709,20 +709,37 @@ AC_DEFUN(MYSQL_CHECK_VIO, [
...
@@ -709,20 +709,37 @@ AC_DEFUN(MYSQL_CHECK_VIO, [
])
])
AC_DEFUN(MYSQL_FIND_OPENSSL, [
AC_DEFUN(MYSQL_FIND_OPENSSL, [
for d in /usr/ssl/include /usr/local/ssl/include /usr/include \
incs="$1"
libs="$2"
case "$incs---$libs" in
default---default )
for d in /usr/ssl/include /usr/local/ssl/include /usr/include \
/usr/include/ssl /opt/ssl/include /opt/openssl/include \
/usr/include/ssl /opt/ssl/include /opt/openssl/include \
/usr/local/ssl/include /usr/local/include ; do
/usr/local/ssl/include /usr/local/include ; do
if test -f $d/openssl/ssl.h ; then
if test -f $d/openssl/ssl.h ; then
OPENSSL_INCLUDE=-I$d
OPENSSL_INCLUDE=-I$d
fi
fi
done
done
for d in /usr/ssl/lib /usr/local/ssl/lib /usr/lib/openssl \
for d in /usr/ssl/lib /usr/local/ssl/lib /usr/lib/openssl \
/usr/lib /usr/lib64 /opt/ssl/lib /opt/openssl/lib /usr/local/lib/ ; do
/usr/lib /usr/lib64 /opt/ssl/lib /opt/openssl/lib /usr/local/lib/ ; do
if test -f $d/libssl.a ; then
if test -f $d/libssl.a ; then
OPENSSL_LIB=$d
OPENSSL_LIB=$d
fi
fi
done
done
;;
default---* | *---default )
AC_MSG_ERROR([if either 'includes' or 'libs' is specified, both must be specified])
;;
* )
if test -f $incs/openssl/ssl.h ; then
OPENSSL_INCLUDE=-I$incs
fi
if test -f $libs/libssl.a ; then
OPENSSL_LIB=$libs
fi
;;
esac
# On RedHat 9 we need kerberos to compile openssl
# On RedHat 9 we need kerberos to compile openssl
for d in /usr/kerberos/include
for d in /usr/kerberos/include
...
@@ -752,11 +769,23 @@ AC_MSG_CHECKING(for OpenSSL)
...
@@ -752,11 +769,23 @@ AC_MSG_CHECKING(for OpenSSL)
[openssl="$withval"],
[openssl="$withval"],
[openssl=no])
[openssl=no])
openssl_libs=""
AC_ARG_WITH([openssl-includes],
openssl_includes=""
[
--with-openssl-includes=DIR
Find OpenSSL headers in DIR],
[openssl_includes="$withval"],
[openssl_includes=default])
AC_ARG_WITH([openssl-libs],
[
--with-openssl-libs=DIR
Find OpenSSL libraries in DIR],
[openssl_libs="$withval"],
[openssl_libs=default])
if test "$openssl" = "yes"
if test "$openssl" = "yes"
then
then
MYSQL_FIND_OPENSSL
MYSQL_FIND_OPENSSL
([$openssl_includes], [$openssl_libs])
#force VIO use
#force VIO use
vio_dir="vio"
vio_dir="vio"
vio_libs="../vio/libvio.la"
vio_libs="../vio/libvio.la"
...
...
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