diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-09-05 17:46:50 +0100 | 
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-09-05 17:46:50 +0100 | 
| commit | f3dc6a708d4fc8cde49bacb69a5b5ac052594930 (patch) | |
| tree | 9b0c40aa98063b0e384c1aef4d0a18c9319bb7cf | |
| parent | Tidy up of previous commit of extensible mapper (diff) | |
| download | netfs-f3dc6a708d4fc8cde49bacb69a5b5ac052594930.tar.bz2 netfs-f3dc6a708d4fc8cde49bacb69a5b5ac052594930.tar.xz netfs-f3dc6a708d4fc8cde49bacb69a5b5ac052594930.zip  | |
Single FUSE version definition
| -rw-r--r-- | netfs/fuse/Jamfile.jam | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/netfs/fuse/Jamfile.jam b/netfs/fuse/Jamfile.jam index 8516d8b..d700c37 100644 --- a/netfs/fuse/Jamfile.jam +++ b/netfs/fuse/Jamfile.jam @@ -1,6 +1,7 @@  import package ;  lib Glacier2 : : <name>Glacier2++11 ; +constant FUSE_VER : 35 ;  obj fuseConfig : fuseConfig.ice :  	<toolset>tidy:<checker>none @@ -32,7 +33,7 @@ lib netfs-client :  	netfs-client-configuration  	[ glob *.cpp : fuseConfigImpl.cpp netfs.cpp ]  	: -	<define>FUSE_USE_VERSION=35 +	<define>FUSE_USE_VERSION=$(FUSE_VER)  	<implicit-dependency>../ice//netfs-api  	<library>netfs-client-configuration  	<implicit-dependency>netfs-client-configuration @@ -46,7 +47,7 @@ lib netfs-client :  	<library>..//slicer-xml  	<use>../..//fuse  	: : -	<define>FUSE_USE_VERSION=31 +	<define>FUSE_USE_VERSION=$(FUSE_VER)  	<include>.  	<library>../ice//netfs-api  	<library>Glacier2  | 
