summaryrefslogtreecommitdiffstats
path: root/boost
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2012-01-25 17:14:58 +0100
committerpiernov <piernov@piernov.org>2012-01-25 17:14:58 +0100
commit24ad77842ef41a6c169eaf4ac0678909ca72b3b5 (patch)
tree707995ee4a1f0054113b7ace7a876894063527e1 /boost
parenta452a3101a9723ab738e97588aafbb9b4ef91f83 (diff)
downloadnutyx-extra-24ad77842ef41a6c169eaf4ac0678909ca72b3b5.tar.gz
nutyx-extra-24ad77842ef41a6c169eaf4ac0678909ca72b3b5.tar.bz2
nutyx-extra-24ad77842ef41a6c169eaf4ac0678909ca72b3b5.tar.xz
nutyx-extra-24ad77842ef41a6c169eaf4ac0678909ca72b3b5.zip
icu 4.8.1.1-1 màj port
Diffstat (limited to 'boost')
-rw-r--r--boost/layout-tagged.patch135
-rw-r--r--boost/translate_exception.patch10
2 files changed, 0 insertions, 145 deletions
diff --git a/boost/layout-tagged.patch b/boost/layout-tagged.patch
deleted file mode 100644
index 05e60ec91..000000000
--- a/boost/layout-tagged.patch
+++ /dev/null
@@ -1,135 +0,0 @@
-Patch to add --layout=tagged option which has the same behaviour as the
-previous --layout=system. This comes from boost svn changeset r53015
-https://svn.boost.org/trac/boost/changeset/53015/trunk
-
---- Jamroot.orig 2009-06-15 23:01:28.000000000 -0400
-+++ Jamroot 2009-06-15 23:08:08.000000000 -0400
-@@ -64,21 +64,26 @@
- # versions of Boost or multiple compilers can
- # be used on the same system.
- #
--# versioned (default) - Names of boost
--# binaries include the Boost version
--# number and the name and version of the
--# compiler. Boost headers are installed
--# in a subdirectory of <HDRDIR> whose
--# name contains the Boost version
--# number.
--#
--# system - Binaries names do not include
--# the Boost version number or the name
--# and version number of the compiler.
--# Boost headers are installed directly
--# into <HDRDIR>. This option is
--# intended for system integrators who
--# are building distribution packages.
-+# versioned (default) - Names of boost binaries
-+# include the Boost version number, name and
-+# version of the compiler and encoded build
-+# properties. Boost headers are installed in a
-+# subdirectory of <HDRDIR> whose name contains
-+# the Boost version number.
-+#
-+# tagged -- Names of boost binaries include the
-+# encoded build properties such as variant and
-+# threading, but do not including compiler name
-+# and version, or Boost version. This option is
-+# useful if you build several variants of Boost,
-+# using the same compiler.
-+#
-+# system - Binaries names do not include the
-+# Boost version number or the name and version
-+# number of the compiler. Boost headers are
-+# installed directly into <HDRDIR>. This option
-+# is intended for system integrators who are
-+# building distribution packages.
- #
- # --buildid=ID Adds the specified ID to the name of built
- # libraries. The default is to not add anything.
-@@ -318,53 +323,50 @@
- {
- if $(type) in STATIC_LIB SHARED_LIB IMPORT_LIB
- {
-+ local result ;
- if $(layout) = versioned
- {
-- local result = [ common.format-name
-+ result = [ common.format-name
- <base> <toolset> <threading> <runtime> -$(BOOST_VERSION_TAG)
- -$(BUILD_ID)
- : $(name) : $(type) : $(property-set) ] ;
--
-- # Optionally add version suffix. On NT, library with version suffix
-- # will not be recognized by linkers. On CYGWIN, we get strage
-- # duplicate symbol errors when library is generated with version
-- # suffix. On OSX, version suffix is not needed -- the linker expects
-- # the libFoo.1.2.3.dylib format. AIX linkers do not accept version
-- # suffixes either. Pgi compilers can not accept library with version
-- # suffix.
-- if $(type) = SHARED_LIB &&
-- ( ! ( [ $(property-set).get <target-os> ] in windows cygwin darwin aix ) &&
-- ! ( [ $(property-set).get <toolset> ] in pgi ) )
-- {
-- result = $(result).$(BOOST_VERSION) ;
-- }
--
-- return $(result) ;
-+ }
-+ else if $(layout) = tagged
-+ {
-+ result = [ common.format-name
-+ <base> <threading> <runtime>
-+ -$(BUILD_ID)
-+ : $(name) : $(type) : $(property-set) ] ;
- }
-- else
-+ else if $(layout) = system
- {
-- local result = [ common.format-name
-+ result = [ common.format-name
- <base>
- -$(BUILD_ID)
- : $(name) : $(type) : $(property-set) ] ;
--
-- # Optionally add version suffix. On NT, library with version suffix
-- # will not be recognized by linkers. On CYGWIN, we get strage
-- # duplicate symbol errors when library is generated with version
-- # suffix. On OSX, version suffix is not needed -- the linker expects
-- # the libFoo.1.2.3.dylib format. AIX linkers do not accept version
-- # suffixes either. Pgi compilers can not accept library with version
-- # suffix.
-- if $(type) = SHARED_LIB &&
-- ( ! ( [ $(property-set).get <target-os> ] in windows cygwin darwin aix ) &&
-- ! ( [ $(property-set).get <toolset> ] in pgi ) )
-- {
-- result = $(result).$(BOOST_VERSION) ;
-- }
--
-- return $(result) ;
- }
-- }
-+ else
-+ {
-+ ECHO "error: invalid layout '$(layout)'" ;
-+ EXIT ;
-+ }
-+
-+ # Optionally add version suffix. On NT, library with version suffix
-+ # will not be recognized by linkers. On CYGWIN, we get strage
-+ # duplicate symbol errors when library is generated with version
-+ # suffix. On OSX, version suffix is not needed -- the linker expects
-+ # the libFoo.1.2.3.dylib format. AIX linkers do not accept version
-+ # suffixes either. Pgi compilers can not accept library with version
-+ # suffix.
-+ if $(type) = SHARED_LIB &&
-+ ( ! ( [ $(property-set).get <target-os> ] in windows cygwin darwin aix ) &&
-+ ! ( [ $(property-set).get <toolset> ] in pgi ) )
-+ {
-+ result = $(result).$(BOOST_VERSION) ;
-+ }
-+
-+ return $(result) ;
-+ }
- }
-
-
diff --git a/boost/translate_exception.patch b/boost/translate_exception.patch
deleted file mode 100644
index 68669c137..000000000
--- a/boost/translate_exception.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/boost/python/detail/translate_exception.hpp 2009-07-25 15:04:50.000000000 -0700
-+++ b/boost/python/detail/translate_exception.hpp 2009-07-25 15:04:50.000000000 -0700
-@@ -9,6 +9,7 @@
-
- # include <boost/call_traits.hpp>
- # include <boost/type_traits/add_const.hpp>
-+# include <boost/type_traits/add_reference.hpp>
-
- # include <boost/function/function0.hpp>
-