Home
last modified time | relevance | path

Searched refs:abiVersion (Results 1 – 5 of 5) sorted by relevance

/haiku/build/jam/packages/
H A DHaikuDevelSecondary27 local abiVersion = [ on $(lib) return $(HAIKU_LIB_ABI_VERSION) ] ;
28 if $(abiVersion) {
29 local abiVersionedLib = $(lib:BS).$(abiVersion) ;
H A DHaikuDevel32 local abiVersion = [ on $(lib) return $(HAIKU_LIB_ABI_VERSION) ] ;
33 if $(abiVersion) {
34 local abiVersionedLib = $(lib:BS).$(abiVersion) ;
/haiku/build/jam/
H A DMainBuildRules461 # SharedLibrary <lib> : <sources> : <libraries> : <abiVersion> ;
466 local abiVersion = $(4) ; # major ABI (soname) version for lib (if any)
472 if $(abiVersion) {
473 HAIKU_SONAME on $(lib) = $(lib:BS).$(abiVersion) ;
474 HAIKU_LIB_ABI_VERSION on $(lib) = $(abiVersion) ;
H A DImageRules588 local abiVersion = [ on $(lib) return $(HAIKU_LIB_ABI_VERSION) ] ;
589 if $(abiVersion) {
590 local abiVersionedLib = $(lib:G=).$(abiVersion) ;
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp1071 BString abiVersion; in _GetABIVersion() local
1086 abiVersion = versionInfo.short_info; in _GetABIVersion()
1089 if (abiVersion.IsEmpty()) in _GetABIVersion()
1090 abiVersion = B_TRANSLATE("Unknown"); in _GetABIVersion()
1092 abiVersion << " (" << B_HAIKU_ABI_NAME << ")"; in _GetABIVersion()
1094 return abiVersion; in _GetABIVersion()