scons: Replace deprecated Options with Variables.

This resolves FTBFS with SCons >= 3.0.2.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 55c6a30f1e)
r14.0.x
Slávek Banko 5 years ago
parent 28509cc759
commit 1f0b9d60c6
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -56,10 +56,10 @@ ie: """+BOLD+"""scons configure debug=full prefix=/usr/local extraincludes=/tmp/
print(CYAN+'** Enabling DESTDIR for the project ** ' + NORMAL + env['DESTDIR'])
# load the options
from SCons.Options import Options, PathOption
from SCons.Variables import Variables
cachefile=env['CACHEDIR']+'generic.cache.py'
opts = Options(cachefile)
opts.AddOptions(
opts = Variables(cachefile)
opts.AddVariables(
( 'KDECCFLAGS', 'C flags' ),
( 'KDECXXFLAGS', 'debug level for the project : full or just anything' ),
( 'KDELINKFLAGS', 'additional link flags' ),

@ -312,10 +312,10 @@ ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt
# Detect the environment - replaces ./configure implicitely
# and store the options into a cache
from SCons.Options import Options
from SCons.Variables import Variables
cachefile=env['CACHEDIR']+'/kde.cache.py'
opts = Options(cachefile)
opts.AddOptions(
opts = Variables(cachefile)
opts.AddVariables(
( 'QTDIR', 'root of qt directory' ),
( 'QTLIBPATH', 'path to the qt libraries' ),
( 'QTINCLUDEPATH', 'path to the qt includes' ),

@ -412,10 +412,10 @@ ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt
Builder = SCons.Builder.Builder
# Detect the environment - replaces ./configure implicitely and store the options into a cache
from SCons.Options import Options
from SCons.Variables import Variables
cachefile=env['CACHEDIR']+'kde.cache.py'
opts = Options(cachefile)
opts.AddOptions(
opts = Variables(cachefile)
opts.AddVariables(
('PREFIX', 'root of the program installation'),
('QTDIR', 'root of qt directory'),

Loading…
Cancel
Save