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
4e2973b4
Commit
4e2973b4
authored
Nov 20, 2014
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Plain Diff
10.0-mroonga
parents
87b75b77
903d145f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
41 deletions
+6
-41
storage/mroonga/CMakeLists.txt
storage/mroonga/CMakeLists.txt
+6
-8
storage/mroonga/vendor/groonga/vendor/update_nginx.sh
storage/mroonga/vendor/groonga/vendor/update_nginx.sh
+0
-33
No files found.
storage/mroonga/CMakeLists.txt
View file @
4e2973b4
...
...
@@ -243,25 +243,23 @@ if(MRN_BUNDLED)
mysql_add_plugin
(
mroonga
"
${
MROONGA_SOURCES
}
;
${
MRN_UDF_SOURCES
}
;
${
MRN_GRN_NORMALIZER_MYSQL_SOURCES
}
;
${
LIBMRN_NEED_MYSQL_SOURCES
}
;
${
LIBMRN_NO_MYSQL_SOURCES
}
"
STORAGE_ENGINE MODULE_ONLY
LINK_LIBRARIES
${
GROONGA_LIBRARIES
}
MODULE_OUTPUT_NAME
"ha_mroonga"
)
LINK_LIBRARIES
${
GROONGA_LIBRARIES
}
)
else
()
mysql_add_plugin
(
mroonga
"
${
MROONGA_SOURCES
}
;
${
MRN_UDF_SOURCES
}
;
${
LIBMRN_NEED_MYSQL_SOURCES
}
;
${
LIBMRN_NO_MYSQL_SOURCES
}
"
STORAGE_ENGINE MODULE_ONLY
LINK_LIBRARIES
${
GROONGA_LIBRARIES
}
MODULE_OUTPUT_NAME
"ha_mroonga"
)
LINK_LIBRARIES
${
GROONGA_LIBRARIES
}
)
endif
()
else
()
else
()
add_library
(
ha_
mroonga MODULE
add_library
(
mroonga MODULE
${
MROONGA_SOURCES
}
${
MRN_UDF_SOURCES
}
${
LIBMRN_NO_MYSQL_SOURCES
}
${
LIBMRN_NEED_MYSQL_SOURCES
}
)
set
(
MYSQL_LIBRARIES
"mysqlservices"
)
target_link_libraries
(
ha_
mroonga
${
GROONGA_LIBRARIES
}
${
MYSQL_LIBRARIES
}
)
target_link_libraries
(
mroonga
${
GROONGA_LIBRARIES
}
${
MYSQL_LIBRARIES
}
)
option
(
WITH_DEBUG
"Enable debug options"
OFF
)
if
(
WITH_DEBUG
)
...
...
@@ -315,11 +313,11 @@ else()
COMPILE_FLAGS
"
${
MRN_C_COMPILE_FLAGS
}
"
)
set_property
(
TARGET mroonga APPEND PROPERTY
COMPILE_DEFINITIONS
"MYSQL_DYNAMIC_PLUGIN"
)
set_target_properties
(
ha_
mroonga PROPERTIES
set_target_properties
(
mroonga PROPERTIES
PREFIX
""
OUTPUT_NAME
"ha_mroonga"
)
install
(
TARGETS
ha_
mroonga DESTINATION
"
${
MYSQL_PLUGIN_DIR
}
"
)
install
(
TARGETS mroonga DESTINATION
"
${
MYSQL_PLUGIN_DIR
}
"
)
endif
()
if
(
GROONGA_NORMALIZER_MYSQL_FOUND
)
...
...
storage/mroonga/vendor/groonga/vendor/update_nginx.sh
deleted
100755 → 0
View file @
87b75b77
#!/bin/sh
set
-u
set
-e
set
-x
if
[
$#
!=
1
]
;
then
echo
"Usage:
$0
VERSION"
echo
" e.g.:
$0
1.2.6"
exit
1
fi
new_nginx_version
=
"
$1
"
base_dir
=
"
$(
dirname
"
$0
"
)
"
top_src_dir
=
"
${
base_dir
}
/.."
nginx_version_file
=
"
${
top_src_dir
}
/nginx_version"
current_nginx_version
=
$(
cat
"
${
nginx_version_file
}
"
)
current_nginx_dir
=
"
${
base_dir
}
/nginx-
${
current_nginx_version
}
"
new_nginx_base_name
=
"nginx-
${
new_nginx_version
}
"
new_nginx_tar_gz
=
"
${
new_nginx_base_name
}
.tar.gz"
wget
"http://nginx.org/download/
${
new_nginx_tar_gz
}
"
tar
xzf
"
${
new_nginx_tar_gz
}
"
rm
"
${
new_nginx_tar_gz
}
"
echo
"
${
new_nginx_version
}
"
>
"
${
nginx_version_file
}
"
git add
"
${
new_nginx_base_name
}
"
git
rm
-rf
"
${
current_nginx_dir
}
"
||
:
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