]> git.lyx.org Git - features.git/commitdiff
Remove the SConscript files in boost.
authorLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 12 May 2006 13:29:30 +0000 (13:29 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 12 May 2006 13:29:30 +0000 (13:29 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13836 a592a061-630c-0410-9148-cb99ea01b6c8

boost/libs/SConscript [deleted file]
boost/libs/filesystem/src/SConscript [deleted file]
boost/libs/iostreams/src/SConscript [deleted file]
boost/libs/regex/src/SConscript [deleted file]
boost/libs/signals/src/SConscript [deleted file]

diff --git a/boost/libs/SConscript b/boost/libs/SConscript
deleted file mode 100644 (file)
index 87b3be2..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-# vi:filetype=python:expandtab:tabstop=2:shiftwidth=2
-
-# file SConscript
-#
-# This file is part of LyX, the document processor.
-# Licence details can be found in the file COPYING.
-# 
-# \author Bo Peng
-# Full author contact details are available in file CREDITS.
-
-Import('env')
-
-# This will be used by all boost libraries
-boostenv = env.Copy()
-boostenv.Append(CCFLAGS = '-DBOOST_USER_CONFIG="<config.h>"')
-# for config.h
-boostenv.Append(CPPPATH = ['#src'])
-Export('boostenv')
-
-print "Entering boost/libs..."
-
-boost = boostenv.SConscript( 
-  dirs = [
-    'filesystem/src',
-    'iostreams/src',
-    'regex/src',
-    'signals/src'
-  ],
-  duplicate = 0
-)
-
-# Return boost libraries 
-Return('boost')
diff --git a/boost/libs/filesystem/src/SConscript b/boost/libs/filesystem/src/SConscript
deleted file mode 100644 (file)
index a61bbe8..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-# vi:filetype=python:expandtab:tabstop=2:shiftwidth=2
-
-# file SConscript
-#
-# This file is part of LyX, the document processor.
-# Licence details can be found in the file COPYING.
-# 
-# \author Bo Peng
-# Full author contact details are available in file CREDITS.
-
-Import('boostenv')
-
-print 'Entering boost/libs/filesystem/src...'
-
-filesystem = boostenv.StaticLibrary(
-  target = '$LOCALLIBPATH/boost_filesystem',
-  source = Split('''
-    convenience.cpp
-    exception.cpp
-    operations_posix_windows.cpp
-    path_posix_windows.cpp
-  ''')
-)
-
-# Return the library
-Return('filesystem')
diff --git a/boost/libs/iostreams/src/SConscript b/boost/libs/iostreams/src/SConscript
deleted file mode 100644 (file)
index 8cc1610..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-# vi:filetype=python:expandtab:tabstop=2:shiftwidth=2
-
-# file SConscript
-#
-# This file is part of LyX, the document processor.
-# Licence details can be found in the file COPYING.
-# 
-# \author Bo Peng
-# Full author contact details are available in file CREDITS.
-
-Import('boostenv')
-
-print 'Entering boost/libs/iostreams/src...'
-
-iostreams = boostenv.StaticLibrary(
-  target = '$LOCALLIBPATH/boost_iostreams',
-  source = Split('''
-    file_descriptor.cpp
-    mapped_file.cpp
-    zlib.cpp
-  ''')
-)
-
-# Return the library
-Return('iostreams')
diff --git a/boost/libs/regex/src/SConscript b/boost/libs/regex/src/SConscript
deleted file mode 100644 (file)
index 021bae8..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-# vi:filetype=python:expandtab:tabstop=2:shiftwidth=2
-
-# file SConscript
-#
-# This file is part of LyX, the document processor.
-# Licence details can be found in the file COPYING.
-# 
-# \author Bo Peng
-# Full author contact details are available in file CREDITS.
-
-Import('boostenv')
-
-print 'Entering boost/libs/regex/src...'
-
-regex = boostenv.StaticLibrary(
-  target = '$LOCALLIBPATH/boost_regex',
-  source = Split('''
-    cpp_regex_traits.cpp
-    c_regex_traits.cpp
-    cregex.cpp
-    fileiter.cpp
-    instances.cpp
-    regex.cpp
-    regex_raw_buffer.cpp
-    regex_traits_defaults.cpp
-    w32_regex_traits.cpp
-  ''')
-)
-
-# Return the library
-Return('regex')
diff --git a/boost/libs/signals/src/SConscript b/boost/libs/signals/src/SConscript
deleted file mode 100644 (file)
index e3b9f8c..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-# vi:filetype=python:expandtab:tabstop=2:shiftwidth=2
-
-# file SConscript
-#
-# This file is part of LyX, the document processor.
-# Licence details can be found in the file COPYING.
-# 
-# \author Bo Peng
-# Full author contact details are available in file CREDITS.
-
-Import('boostenv')
-
-print 'Entering boost/libs/signals/src...'
-
-signals = boostenv.StaticLibrary(
-  target = '$LOCALLIBPATH/boost_signals',
-  source = Split('''
-    connection.cpp
-    named_slot_map.cpp
-    signal_base.cpp
-    slot.cpp
-    trackable.cpp
-  ''')
-)
-
-# Return the library
-Return('signals')