module PhusionPassenger::Standalone::Utils

def runtime_version_string

def runtime_version_string
	if PhusionPassenger.natively_packaged?
		return "natively-packaged"
	else
		require_platform_info_binary_compatibility
		return "#{VERSION_STRING}-#{PlatformInfo.passenger_binary_compatibility_id}"
	end
end