diff --git a/boost-base.jam b/boost-base.jam index e77aa7bce..5494b66a2 100644 --- a/boost-base.jam +++ b/boost-base.jam @@ -1876,6 +1876,13 @@ gGENERATOR_FUNCTION(DLL) = dll-files ; gIS_DEPENDENCY(DLL) = TRUE ; rule dll ( target : sources + : requirements * : default-build * ) { + if $(JAMUNAME[1]) = OpenBSD + { + if ! [ get-values : $(requirements) ] + { + requirements += 0.0 ; + } + } declare-local-target $(target) : $(sources) : $(requirements) : $(default-build) : DLL ; } diff --git a/v1/boost-base.jam b/v1/boost-base.jam index e77aa7bce..5494b66a2 100644 --- a/v1/boost-base.jam +++ b/v1/boost-base.jam @@ -1876,6 +1876,13 @@ gGENERATOR_FUNCTION(DLL) = dll-files ; gIS_DEPENDENCY(DLL) = TRUE ; rule dll ( target : sources + : requirements * : default-build * ) { + if $(JAMUNAME[1]) = OpenBSD + { + if ! [ get-values : $(requirements) ] + { + requirements += 0.0 ; + } + } declare-local-target $(target) : $(sources) : $(requirements) : $(default-build) : DLL ; }