public
Description: Rubinius, the Ruby VM
Homepage: http://rubini.us
Clone URL: git://github.com/evanphx/rubinius.git
Search Repo:
Nuke lightning, remove FFI stuff (as per master).
oleg dashevskii (author)
Sun Mar 02 20:28:52 -0800 2008
commit  72e0753808957ef1209cfae5291c89546b00988d
tree    4ff060ac626e01f6a634b5eb38409568f1e14b59
parent  671f9ba5ab33c0dc50944fa37af5ed61bee3073e
  • shotgun/CMakeLists.txt
  • shotgun/external_libs/lightning/CMakeLists.txt
  • shotgun/external_libs/lightning/config.h.cmake
  • shotgun/external_libs/lightning/lightning/CMakeLists.txt
  • shotgun/external_libs/lightning/opcode/CMakeLists.txt
  • shotgun/lib/CMakeLists.txt
...
84
85
86
87
88
89
90
91
92
93
94
 
95
96
97
...
84
85
86
 
87
88
89
90
91
92
 
93
94
95
96
0
@@ -84,14 +84,13 @@ add_subdirectory(external_libs/libmpa)
0
 add_subdirectory(external_libs/libmquark)
0
 add_subdirectory(external_libs/libtommath)
0
 add_subdirectory(external_libs/libzip)
0
-add_subdirectory(external_libs/lightning)
0
 add_subdirectory(external_libs/onig)
0
 
0
 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
0
 include_directories(${CMAKE_CURRENT_BINARY_DIR}/..)
0
 
0
 foreach(d libbstring libcchash libev libmpa libmquark libtommath libzip/lib
0
- lightning onig)
0
+ onig)
0
   include_directories(${CMAKE_CURRENT_SOURCE_DIR}/external_libs/${d})
0
   include_directories(${CMAKE_CURRENT_BINARY_DIR}/external_libs/${d})
0
 endforeach(d)
...
17
18
19
20
21
22
23
 
 
 
24
25
26
...
30
31
32
33
34
35
36
...
118
119
120
121
 
122
123
124
...
17
18
19
 
 
 
 
20
21
22
23
24
25
...
29
30
31
 
32
33
34
...
116
117
118
 
119
120
121
122
0
@@ -17,10 +17,9 @@ set(lib_src
0
   sha1.c state.c string.c symbol.c tuple.c var_table.c)
0
 
0
 set(subtend_src
0
- subtend/ffi_amd64.c subtend/ffi.c subtend/ffi_x86.c subtend/handle.c
0
- subtend/library.c subtend/nmc.c subtend/nmethod.c subtend/PortableUContext.c
0
- subtend/ruby.c subtend/setup.c subtend/PortableUContext_asm.S)
0
-
0
+ subtend/ffi.c subtend/handle.c subtend/library.c subtend/nmc.c
0
+ subtend/nmethod.c subtend/PortableUContext.c subtend/ruby.c subtend/setup.c
0
+ subtend/PortableUContext_asm.S)
0
 
0
 if(NOT HAVE_STRLCAT)
0
   set(strl_src ${strl_src} strlcat.c)
0
@@ -30,7 +29,6 @@ if(NOT HAVE_STRLCPY)
0
   set(strl_src ${strl_src} strlcpy.c)
0
 endif(NOT HAVE_STRLCPY)
0
 
0
-
0
 #### generate instruction_names.c, instruction_names.h, instructions.gen,
0
 #### instruction_dt.gen, instruction_funcs.gen
0
 
0
@@ -118,7 +116,7 @@ if(LINUX)
0
   target_link_libraries(rubinius pthread crypt rt)
0
 endif(LINUX)
0
 
0
-set_target_properties(rubinius PROPERTIES SOVERSION ${LIBVER})
0
+set_target_properties(rubinius PROPERTIES SOVERSION ${VERSION})
0
 
0
 #grammar.o:
0
 # $(COMP) $(CFLAGS) -c grammar.c

Comments

    No one has commented yet.