summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--netfs/fuse/Jamfile.jam5
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