Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
67302711
Commit
67302711
authored
12 years ago
by
Konstantin Osipov
Browse files
Options
Downloads
Plain Diff
Merge branch 'stable' of github.com:mailru/tarantool into stable
parents
c16faf29
90cd0450
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
cmake/compiler.cmake
+3
-3
3 additions, 3 deletions
cmake/compiler.cmake
extra/tarantool.spec.in
+46
-0
46 additions, 0 deletions
extra/tarantool.spec.in
include/object.h
+3
-2
3 additions, 2 deletions
include/object.h
test/unit/CMakeLists.txt
+1
-1
1 addition, 1 deletion
test/unit/CMakeLists.txt
with
53 additions
and
6 deletions
cmake/compiler.cmake
+
3
−
3
View file @
67302711
...
...
@@ -27,12 +27,12 @@ endif()
if
(
CMAKE_COMPILER_IS_GNUCC
)
execute_process
(
COMMAND
${
CMAKE_C_COMPILER
}
-dumpversion
OUTPUT_VARIABLE CC_VERSION
)
if
(
CC_VERSION VERSION_GREATER 4.
6
OR CC_VERSION VERSION_EQUAL 4.
6
)
if
(
CC_VERSION VERSION_GREATER 4.
4.5
OR CC_VERSION VERSION_EQUAL 4.
4.5
)
message
(
STATUS
"
${
CMAKE_C_COMPILER
}
version >= 4.
6
--
${
CC_VERSION
}
"
)
"
${
CMAKE_C_COMPILER
}
version >= 4.
4.5
--
${
CC_VERSION
}
"
)
else
()
message
(
FATAL_ERROR
"
${
CMAKE_C_COMPILER
}
version should be >= 4.
6
--
${
CC_VERSION
}
"
)
"
${
CMAKE_C_COMPILER
}
version should be >= 4.
4.5
--
${
CC_VERSION
}
"
)
endif
()
endif
()
...
...
This diff is collapsed.
Click to expand it.
extra/tarantool.spec.in
+
46
−
0
View file @
67302711
...
...
@@ -75,6 +75,52 @@ mv "@CPACK_TOPLEVEL_DIRECTORY@/tmpBBroot" $RPM_BUILD_ROOT
"/usr/local/bin/tarantool_multi.sh"
"/usr/local/bin/tarantool_deploy.sh"
"/etc/rc.d/init.d/tarantool_box"
%dir "/usr/local/include/tarantool"
"/usr/local/include/tarantool/tnt.h"
"/usr/local/include/tarantool/tnt_buf.h"
"/usr/local/include/tarantool/tnt_call.h"
"/usr/local/include/tarantool/tnt_delete.h"
"/usr/local/include/tarantool/tnt_dir.h"
"/usr/local/include/tarantool/tnt_enc.h"
"/usr/local/include/tarantool/tnt_insert.h"
"/usr/local/include/tarantool/tnt_io.h"
"/usr/local/include/tarantool/tnt_iob.h"
"/usr/local/include/tarantool/tnt_iter.h"
"/usr/local/include/tarantool/tnt_lex.h"
"/usr/local/include/tarantool/tnt_log.h"
"/usr/local/include/tarantool/tnt_mem.h"
"/usr/local/include/tarantool/tnt_net.h"
"/usr/local/include/tarantool/tnt_opt.h"
"/usr/local/include/tarantool/tnt_ping.h"
"/usr/local/include/tarantool/tnt_proto.h"
"/usr/local/include/tarantool/tnt_queue.h"
"/usr/local/include/tarantool/tnt_reply.h"
"/usr/local/include/tarantool/tnt_request.h"
"/usr/local/include/tarantool/tnt_rpl.h"
"/usr/local/include/tarantool/tnt_select.h"
"/usr/local/include/tarantool/tnt_snapshot.h"
"/usr/local/include/tarantool/tnt_sql.h"
"/usr/local/include/tarantool/tnt_stream.h"
"/usr/local/include/tarantool/tnt_tuple.h"
"/usr/local/include/tarantool/tnt_update.h"
"/usr/local/include/tarantool/tnt_utf8.h"
"/usr/local/include/tarantool/tnt_xlog.h"
"/usr/local/lib/libtarantool.a"
"/usr/local/lib/libtarantool.so"
"/usr/local/lib/libtarantool.so.1"
"/usr/local/lib/libtarantool.so.1.1"
"/usr/local/lib/libtarantoolnet.a"
"/usr/local/lib/libtarantoolnet.so"
"/usr/local/lib/libtarantoolnet.so.1"
"/usr/local/lib/libtarantoolnet.so.1.1"
"/usr/local/lib/libtarantoolrpl.a"
"/usr/local/lib/libtarantoolrpl.so"
"/usr/local/lib/libtarantoolrpl.so.1"
"/usr/local/lib/libtarantoolrpl.so.1.1"
"/usr/local/lib/libtarantoolsql.a"
"/usr/local/lib/libtarantoolsql.so"
"/usr/local/lib/libtarantoolsql.so.1"
"/usr/local/lib/libtarantoolsql.so.1.1"
%config(noreplace) "/usr/local/etc/tarantool.cfg"
...
...
This diff is collapsed.
Click to expand it.
include/object.h
+
3
−
2
View file @
67302711
...
...
@@ -28,10 +28,11 @@
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include
<objc/Object.h>
#include
<objc/runtime.h>
@interface
tnt_Object
:
Object
@interface
tnt_Object
{
Class
isa
;
}
+
(
id
)
alloc
;
-
(
id
)
init
;
-
(
void
)
free
;
...
...
This diff is collapsed.
Click to expand it.
test/unit/CMakeLists.txt
+
1
−
1
View file @
67302711
...
...
@@ -18,7 +18,7 @@ add_executable(bitset_index_test bitset_index.c)
target_link_libraries
(
bitset_index_test bitset
)
add_executable
(
objc_finally objc_finally.m
)
include_directories
(
${
LIBOBJC_INCLUDE_DIR
S
}
)
include_directories
(
${
LIBOBJC_INCLUDE_DIR
}
)
add_executable
(
objc_catchcxx objc_catchcxx.m
)
add_dependencies
(
objc_finally build_bundled_libs
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment