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
6d4aa0e2
Commit
6d4aa0e2
authored
Mar 10, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#11835 CREATE FUNCTION crashes server
- Don't look for 'dl_open' if mysqld is compiled with "-all-static"
parent
e75a62ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
14 deletions
+28
-14
configure.in
configure.in
+28
-14
No files found.
configure.in
View file @
6d4aa0e2
...
...
@@ -1632,16 +1632,35 @@ else
fi
#---END:
# Check for dlopen, needed for user definable functions
# This must be checked after threads on AIX
# We only need this for mysqld, not for the clients.
# dlopen, dlerror
case
$with_mysqld_ldflags
in
*
-all-static
*
)
# No need to check for dlopen when mysqld is linked with
# -all-static as it won't be able to load any functions.
;;
*
)
# Check for dlopen, needed for user definable functions
# This must be checked after threads on AIX
# We only need this for mysqld, not for the clients.
my_save_LIBS
=
"
$LIBS
"
LIBS
=
""
AC_CHECK_LIB
(
dl,dlopen
)
LIBDL
=
$LIBS
LIBS
=
"
$my_save_LIBS
"
AC_SUBST
(
LIBDL
)
my_save_LIBS
=
"
$LIBS
"
LIBS
=
"
$LIBS
$LIBDL
"
AC_CHECK_FUNCS
(
dlopen dlerror
)
LIBS
=
"
$my_save_LIBS
"
;;
esac
my_save_LIBS
=
"
$LIBS
"
LIBS
=
""
AC_CHECK_LIB
(
dl,dlopen
)
LIBDL
=
$LIBS
LIBS
=
"
$my_save_LIBS
"
AC_SUBST
(
LIBDL
)
# System characteristics
case
$SYSTEM_TYPE
in
...
...
@@ -2005,11 +2024,6 @@ then
fi
]
)
my_save_LIBS
=
"
$LIBS
"
LIBS
=
"
$LIBS
$LIBDL
"
AC_CHECK_FUNCS
(
dlopen dlerror
)
LIBS
=
"
$my_save_LIBS
"
# Check definition of gethostbyaddr_r (glibc2 defines this with 8 arguments)
ac_save_CXXFLAGS
=
"
$CXXFLAGS
"
AC_CACHE_CHECK
([
style of gethost
*
routines], mysql_cv_gethost_style,
...
...
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