From 7192c8fd37f7766dd1c5ddeec293f42d0adc0714 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20Gullik=20Bj=C3=B8nnes?= Date: Fri, 12 May 2006 13:29:30 +0000 Subject: [PATCH] Remove the SConscript files in boost. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13836 a592a061-630c-0410-9148-cb99ea01b6c8 --- boost/libs/SConscript | 33 ---------------------------- boost/libs/filesystem/src/SConscript | 26 ---------------------- boost/libs/iostreams/src/SConscript | 25 --------------------- boost/libs/regex/src/SConscript | 31 -------------------------- boost/libs/signals/src/SConscript | 27 ----------------------- 5 files changed, 142 deletions(-) delete mode 100644 boost/libs/SConscript delete mode 100644 boost/libs/filesystem/src/SConscript delete mode 100644 boost/libs/iostreams/src/SConscript delete mode 100644 boost/libs/regex/src/SConscript delete mode 100644 boost/libs/signals/src/SConscript diff --git a/boost/libs/SConscript b/boost/libs/SConscript deleted file mode 100644 index 87b3be25aa..0000000000 --- a/boost/libs/SConscript +++ /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=""') -# 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 index a61bbe8f14..0000000000 --- a/boost/libs/filesystem/src/SConscript +++ /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 index 8cc16106b9..0000000000 --- a/boost/libs/iostreams/src/SConscript +++ /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 index 021bae8533..0000000000 --- a/boost/libs/regex/src/SConscript +++ /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 index e3b9f8c4b9..0000000000 --- a/boost/libs/signals/src/SConscript +++ /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') -- 2.39.5