diff options
Diffstat (limited to 'devel/boost/files')
4 files changed, 58 insertions, 0 deletions
diff --git a/devel/boost/files/patch-libs::test:src::test_tools.cpp b/devel/boost/files/patch-libs::test:src::test_tools.cpp new file mode 100644 index 000000000000..dc4790c8d7af --- /dev/null +++ b/devel/boost/files/patch-libs::test:src::test_tools.cpp @@ -0,0 +1,11 @@ +--- libs/test/src/test_tools.cpp.orig Tue Feb 17 16:31:56 2004 ++++ libs/test/src/test_tools.cpp Tue Feb 17 16:32:10 2004 +@@ -191,7 +191,7 @@ + void + print_log_value<char>::operator()( std::ostream& ostr, char t ) + { +- if( std::isprint( t ) ) ++ if( isprint( t ) ) + ostr << '\'' << t << '\''; + else + ostr << std::hex diff --git a/devel/boost/files/patch-tools::build::v1::allyourbase.jam b/devel/boost/files/patch-tools::build::v1::allyourbase.jam new file mode 100644 index 000000000000..39f8fa5a01ee --- /dev/null +++ b/devel/boost/files/patch-tools::build::v1::allyourbase.jam @@ -0,0 +1,11 @@ +--- tools/build/v1/allyourbase.jam.orig Wed Feb 18 14:04:28 2004 ++++ tools/build/v1/allyourbase.jam Wed Feb 18 14:02:44 2004 +@@ -457,7 +457,7 @@ + SPLITPATH ?= ":" ; # dwa -- added missing SPLITPATH + STDHDRS ?= /usr/include ; + SUFEXE ?= "" ; +-SUFDLL ?= .so ; ++SUFDLL ?= .so.1 ; + SUFLIB ?= .a ; + SUFOBJ ?= .o ; + PREDLL ?= lib ; diff --git a/devel/boost/files/patch-tools::build::v1::boost-base.jam b/devel/boost/files/patch-tools::build::v1::boost-base.jam new file mode 100644 index 000000000000..b335598b72c7 --- /dev/null +++ b/devel/boost/files/patch-tools::build::v1::boost-base.jam @@ -0,0 +1,14 @@ +--- tools/build/v1/boost-base.jam.orig Wed Jan 28 23:52:25 2004 ++++ tools/build/v1/boost-base.jam Wed Feb 18 14:06:58 2004 +@@ -2621,11 +2621,6 @@ + local version-tag = [ MATCH "^([^.]+).([^.]+)" : $(version-number[1]) ] ; + version-tag = $(version-tag:J="_") ; + +- tags += $(toolset-tag:J=) ; +- tags += $(thread-tag:J=) ; +- tags += $(runtime-tag:J=) ; +- tags += $(version-tag) ; +- + if $(tags) + { + return $(properties) <*><*><tag><prefix>-$(tags:J=-) ; diff --git a/devel/boost/files/patch-tools::build::v1::gcc-tools.jam b/devel/boost/files/patch-tools::build::v1::gcc-tools.jam new file mode 100644 index 000000000000..9656c4a3df1c --- /dev/null +++ b/devel/boost/files/patch-tools::build::v1::gcc-tools.jam @@ -0,0 +1,22 @@ +--- tools/build/v1/gcc-tools.jam.orig Thu Jan 22 05:11:52 2004 ++++ tools/build/v1/gcc-tools.jam Wed Feb 18 12:57:30 2004 +@@ -61,7 +61,7 @@ + flags gcc LINKFLAGS <runtime-link>static : -static ; + flags gcc CFLAGS <debug-symbols>on : -g ; + flags gcc LINKFLAGS <debug-symbols>on : -g ; +-flags gcc CFLAGS <optimization>off : -O0 ; ++flags gcc CFLAGS <optimization>off : ; + flags gcc CFLAGS <optimization>speed : -O3 ; + + # Other optimizations we might want for GCC +@@ -125,8 +125,8 @@ + } + case *BSD : + { +- flags gcc CFLAGS <threading>multi : -pthread ; +- flags gcc LINKFLAGS <threading>multi : -pthread ; ++ flags gcc CFLAGS <threading>multi : %%PTHREAD_CFLAGS%% ; ++ flags gcc LINKFLAGS <threading>multi : %%PTHREAD_LIBS%% ; + # there is no -lrt on BSD + } + case IRIX : |