Mxx_ru 1.5.3 → 1.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +4 -2
- data/lib/mxx_ru/abstract_target.rb +6 -2
- data/lib/mxx_ru/binary_library.rb +2 -1
- data/lib/mxx_ru/binary_target.rb +1 -1
- data/lib/mxx_ru/binary_unittest.rb +1 -1
- data/lib/mxx_ru/cmd_line_option_processor.rb +1 -1
- data/lib/mxx_ru/compat.rb +1 -1
- data/lib/mxx_ru/cpp.rb +1 -1
- data/lib/mxx_ru/cpp/analyzer.rb +1 -1
- data/lib/mxx_ru/cpp/composite.rb +1 -1
- data/lib/mxx_ru/cpp/detect_toolset.rb +2 -2
- data/lib/mxx_ru/cpp/lib_collection.rb +1 -1
- data/lib/mxx_ru/cpp/mode.rb +1 -1
- data/lib/mxx_ru/cpp/obj_placement.rb +1 -1
- data/lib/mxx_ru/cpp/obj_placements/custom_subdir.rb +1 -1
- data/lib/mxx_ru/cpp/qt.rb +1 -1
- data/lib/mxx_ru/cpp/qt4.rb +1 -1
- data/lib/mxx_ru/cpp/qt4_via_pkg_config.rb +1 -1
- data/lib/mxx_ru/cpp/qt4details.rb +1 -1
- data/lib/mxx_ru/cpp/rucodegen.rb +3 -3
- data/lib/mxx_ru/cpp/source_file.rb +1 -1
- data/lib/mxx_ru/cpp/target.rb +1 -1
- data/lib/mxx_ru/cpp/toolset.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/c89_nsk.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_darwin.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_family.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_linux.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_mingw.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_unix_family.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/icc_win.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc10.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc7.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc8.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc8_family.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc9.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc_family.rb +1 -1
- data/lib/mxx_ru/environment_setup.rb +29 -0
- data/lib/mxx_ru/ex.rb +1 -1
- data/lib/mxx_ru/generators/bin-unittest/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-build-root/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-composite/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-dll/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-exe/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-lib-collection/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-lib/g.rb +1 -1
- data/lib/mxx_ru/generators/impl/cpp/generation.rb +1 -1
- data/lib/mxx_ru/generators/impl/std_receiver.rb +1 -1
- data/lib/mxx_ru/makestyle_generator.rb +1 -1
- data/lib/mxx_ru/textfile_unittest.rb +1 -1
- data/lib/mxx_ru/util.rb +1 -1
- data/lib/mxx_ru/version.rb +2 -3
- data/tests/cpp/cpp_sources_glob/tc_cpp_sources_glob.rb +1 -1
- data/tests/cpp/custom_target_prefix/tc_custom_target_prefix.rb +1 -1
- data/tests/cpp/lib_from_lib_dependecies/tc_checker.rb +1 -1
- data/tests/cpp/mswin_res_dll/tc_mswin_res_dll.rb +1 -1
- data/tests/cpp/mswin_res_exe/tc_mswin_res_exe.rb +1 -1
- data/tests/cpp/rucodegen.embedded/tc_rucodegen.rb +1 -1
- data/tests/cpp/rucodegen/tc_rucodegen.rb +1 -1
- data/tests/cpp/textfile_unittest/tc_textfile_unittest.rb +1 -1
- data/tests/cpp/vc_cleanup/tc_vc_cleanup.rb +1 -1
- data/tests/darwin/bundle_target_type/tc_normal_build.rb +1 -1
- data/tests/mxx_ru/lib_collection/tc_lib_collection.rb +1 -1
- data/tests/mxx_ru/lib_path/tc_lib_path.rb +1 -1
- data/tests/mxx_ru/opt_lib_ext/tc_opt_lib_ext.rb +1 -1
- data/tests/mxx_ru/target_ext/tc_target_ext.rb +1 -1
- data/tests/unix/lib_linking_mode/tc_conflicted_build.rb +1 -1
- data/tests/unix/lib_linking_mode/tc_normal_build.rb +1 -1
- data/tests/unix/lib_order/tc_normal_build.rb +1 -1
- metadata +18 -125
- data/lib/mxx_ru/svn-commit.tmp +0 -4
data/Rakefile
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
$:.unshift( '.' )
|
2
|
+
|
1
3
|
require 'rubygems'
|
2
4
|
|
3
5
|
require 'rake/gempackagetask'
|
@@ -32,8 +34,8 @@ test = Rake::TestTask.new do |t|
|
|
32
34
|
|
33
35
|
# Visual C++ 8.0-9.0 specific files must be excluded when working with
|
34
36
|
# another compiler.
|
35
|
-
test_files = test_files.delete_if { |n| /\/vc[
|
36
|
-
/(mxx_ru\/cpp\/toolsets\/){0,1}vc[
|
37
|
+
test_files = test_files.delete_if { |n| /\/vc[189]/ =~ n } unless
|
38
|
+
/(mxx_ru\/cpp\/toolsets\/){0,1}vc[189]/ =~ ENV[ 'MXX_RU_CPP_TOOLSET' ]
|
37
39
|
|
38
40
|
# Visual C++ specific files must be excluded when working with
|
39
41
|
# another compiler.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -26,6 +26,7 @@
|
|
26
26
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
27
|
#++
|
28
28
|
|
29
|
+
require 'mxx_ru/environment_setup'
|
29
30
|
require 'mxx_ru/ex'
|
30
31
|
|
31
32
|
require 'mxx_ru/util'
|
@@ -260,7 +261,10 @@ module MxxRu
|
|
260
261
|
# Then adding created target object to the list ofd subordinated projects.
|
261
262
|
# If no target will be created, exception would be thrown.
|
262
263
|
if !MxxRu::target_defined_for?( a_prj )
|
263
|
-
|
264
|
+
# expand_path is called because $: in Ruby 1.9.2 doesn't contain
|
265
|
+
# the current path. So the form "required_prj 'some/project/prj.rb'"
|
266
|
+
# doesn't work in Ruby 1.9.2.
|
267
|
+
require File.expand_path( a_prj )
|
264
268
|
end
|
265
269
|
|
266
270
|
target = MxxRu::query_target( a_prj, true )
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -26,6 +26,7 @@
|
|
26
26
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
27
|
#++
|
28
28
|
|
29
|
+
require 'mxx_ru/environment_setup'
|
29
30
|
require 'mxx_ru/ex'
|
30
31
|
|
31
32
|
module MxxRu
|
data/lib/mxx_ru/binary_target.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/mxx_ru/compat.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/mxx_ru/cpp.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/mxx_ru/cpp/analyzer.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/mxx_ru/cpp/composite.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -148,7 +148,7 @@ module MxxRu
|
|
148
148
|
# Assume that GCC is default compiler on Linux.
|
149
149
|
"gcc_linux"
|
150
150
|
else
|
151
|
-
if ENV[ '
|
151
|
+
if ENV[ 'COMP_ENV' ] and ENV[ 'VC_ARCH' ]
|
152
152
|
'icc_win'
|
153
153
|
elsif ENV[ 'VS100COMNTOOLS' ]
|
154
154
|
'vc10'
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/mxx_ru/cpp/mode.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/mxx_ru/cpp/qt.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/mxx_ru/cpp/qt4.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/mxx_ru/cpp/rucodegen.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -87,7 +87,7 @@ class RuCodeGen < AbstractGenerator
|
|
87
87
|
|
88
88
|
# Returns command line for run code generation.
|
89
89
|
def build_cmd( mode )
|
90
|
-
"ruby #{@name} --mode #{mode}"
|
90
|
+
"ruby -I. #{@name} --mode #{mode}"
|
91
91
|
end
|
92
92
|
end
|
93
93
|
|
@@ -99,7 +99,7 @@ class RuCodeGen < AbstractGenerator
|
|
99
99
|
|
100
100
|
# Returns command line for run code generation.
|
101
101
|
def build_cmd( mode )
|
102
|
-
"ruby -e\"require 'rubygems'; gem 'RuCodeGen'; require 'rucodegen'; " +
|
102
|
+
"ruby -I. -e\"require 'rubygems'; gem 'RuCodeGen'; require 'rucodegen'; " +
|
103
103
|
"process_embedded_rucodegen('#{@name}',:#{mode})\""
|
104
104
|
end
|
105
105
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/mxx_ru/cpp/target.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
data/lib/mxx_ru/cpp/toolset.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006, The Mxx_ru Project
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
3
3
|
# Copyright (c) 2004-2006, JSC Intervale
|
4
|
-
# Copyright (c) 2006-
|
4
|
+
# Copyright (c) 2006-2011, The Mxx_ru Project
|
5
5
|
# All rights reserved.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without modification,
|