2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-18 01:52:17 +00:00

Add default <dllversion> on OpenBSD platform to satisfy *.so link requirements.

[SVN r16919]
This commit is contained in:
Rene Rivera
2003-01-16 23:17:11 +00:00
parent 660a759720
commit 79bed46b4d
2 changed files with 14 additions and 0 deletions

View File

@@ -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 <dllversion> : $(requirements) ]
{
requirements += <dllversion>0.0 ;
}
}
declare-local-target $(target) : $(sources) : $(requirements) : $(default-build) : DLL ;
}

View File

@@ -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 <dllversion> : $(requirements) ]
{
requirements += <dllversion>0.0 ;
}
}
declare-local-target $(target) : $(sources) : $(requirements) : $(default-build) : DLL ;
}