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
af3dbb68
Commit
af3dbb68
authored
Sep 30, 2009
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge autotools fixes to be able to build with builddir != srcdir.
Author: Peter Lieverdink
parents
cadcc55b
157fa0bb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
config/ac-macros/libevent.m4
config/ac-macros/libevent.m4
+1
-1
configure.in
configure.in
+1
-1
extra/libevent/Makefile.am
extra/libevent/Makefile.am
+2
-2
No files found.
config/ac-macros/libevent.m4
View file @
af3dbb68
...
...
@@ -13,7 +13,7 @@ AC_DEFUN([MYSQL_USE_BUNDLED_LIBEVENT], [
AC_SUBST([libevent_dir])
libevent_libs="\$(top_builddir)/extra/libevent/libevent.a"
libevent_includes="-I\$(top_
build
dir)/extra/libevent"
libevent_includes="-I\$(top_
src
dir)/extra/libevent"
libevent_test_option="--mysqld=--thread-handling=pool-of-threads"
AC_SUBST(libevent_libs)
AC_SUBST(libevent_includes)
...
...
configure.in
View file @
af3dbb68
...
...
@@ -2697,7 +2697,7 @@ case $SYSTEM_TYPE in
fi
# if there is no readline, but we want to build with readline, we fail
if
[
test
"
$want_to_use_readline
"
=
"yes"
]
&&
[
test
!
-d
"
.
/cmd-line-utils/readline"
]
if
[
test
"
$want_to_use_readline
"
=
"yes"
]
&&
[
test
!
-d
"
$srcdir
/cmd-line-utils/readline"
]
then
AC_MSG_ERROR
([
This commercially licensed MySQL
source
package can
't
be built with libreadline. Please use --with-libedit to use
...
...
extra/libevent/Makefile.am
View file @
af3dbb68
...
...
@@ -22,7 +22,7 @@ include_HEADERS = event.h evutil.h event-config.h
BUILT_SOURCES
=
event-config.h
event-config.h
:
$(top_
src
dir)/include/config.h
event-config.h
:
$(top_
build
dir)/include/config.h
echo
'/* event-config.h'
>
$@
echo
' * Generated by autoconf; post-processed by libevent.'
>>
$@
echo
' * Do not edit this file.'
>>
$@
...
...
@@ -33,7 +33,7 @@ event-config.h: $(top_srcdir)/include/config.h
sed
-e
's/#define /#define _EVENT_/'
\
-e
's/#undef /#undef _EVENT_/'
\
-e
's/#ifndef /#ifndef _EVENT_/'
<
$(top_
src
dir)/include/config.h
>>
$@
-e
's/#ifndef /#ifndef _EVENT_/'
<
$(top_
build
dir)/include/config.h
>>
$@
echo
"#endif"
>>
$@
AM_CPPFLAGS
=
-Icompat
-I
$(top_srcdir)
/include
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