summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-02-26 14:29:58 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2013-02-26 14:29:58 +0000
commit126802ffc560fc18ccbd4714ae6aa6d9cc60c223 (patch)
tree7198a8342b3601ac4223c31b7f4e7c55b8052a31 /wscript
parentf2f9a2341ed5952b3c1093c26cc943de6e0c8492 (diff)
add --depstack-root option to waf to allow building with gtk/ardour dependency stacks in various locations; clean up libintl logic in wscript
git-svn-id: svn://localhost/ardour2/branches/3.0@14099 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'wscript')
-rw-r--r--wscript55
1 files changed, 26 insertions, 29 deletions
diff --git a/wscript b/wscript
index 7d92fe0089..654d770d7c 100644
--- a/wscript
+++ b/wscript
@@ -399,6 +399,8 @@ def options(opt):
help='Compile without support for AU Plugins with only CARBON UI (needed for 64bit)')
opt.add_option('--boost-sp-debug', action='store_true', default=False, dest='boost_sp_debug',
help='Compile with Boost shared pointer debugging')
+ opt.add_option('--depstack-root', type='string', default='~', dest='depstack_root',
+ help='Directory/folder where dependency stack trees (gtk, a3) can be found (defaults to ~)')
opt.add_option('--dist-target', type='string', default='auto', dest='dist_target',
help='Specify the target for cross-compiling [auto,none,x86,i386,i686,x86_64,powerpc,tiger,leopard]')
opt.add_option('--fpu-optimization', action='store_true', default=True, dest='fpu_optimization',
@@ -477,39 +479,34 @@ def configure(conf):
print('Please use a different version or re-configure with --debug')
exit (1)
- # libintl may or may not be trivially locatable. On OS X this is always
- # true. On Linux it will depend on whether we're on a normal Linux distro,
- # in which case libintl.h is going to be available in /usr/include and
- # the library itself is part of glibc, or on a bare-bones build system
- # where we need to pick it up from the GTK dependency stack.
+ # systems with glibc have libintl builtin. systems without require explicit
+ # linkage against libintl.
#
- user_gtk_root = os.path.expanduser ('~/gtk/inst')
+
pkg_config_path = os.getenv('PKG_CONFIG_PATH')
- if os.path.isfile ('/usr/include/libintl.h'):
- # libintl is part of the system., so use it
- autowaf.display_msg(conf, 'Will reply on libintl built into libc', 'yes')
+ user_gtk_root = os.path.expanduser (Options.options.depstack_root + '/gtk/inst')
+
+ if pkg_config_path is not None and pkg_config_path.find (user_gtk_root) >= 0:
+ # told to search user_gtk_root
+ prefinclude = ''.join ([ '-I', user_gtk_root + '/include'])
+ preflib = ''.join ([ '-L', user_gtk_root + '/lib'])
+ conf.env.append_value('CFLAGS', [ prefinclude ])
+ conf.env.append_value('CXXFLAGS', [prefinclude ])
+ conf.env.append_value('LINKFLAGS', [ preflib ])
+ autowaf.display_msg(conf, 'Will build against private GTK dependency stack in ' + user_gtk_root, 'yes')
else:
- if (pkg_config_path is not None):
- # told to search for pkgconfig files
- if pkg_config_path.find (user_gtk_root) >= 0:
- # told to search user_gtk_root
- prefinclude = ''.join ([ '-I', user_gtk_root + '/include'])
- preflib = ''.join ([ '-L', user_gtk_root + '/lib'])
- conf.env.append_value('CFLAGS', [ prefinclude ])
- conf.env.append_value('CXXFLAGS', [prefinclude ])
- conf.env.append_value('LINKFLAGS', [ preflib ])
- conf.define ('NEED_INTL', 1)
- autowaf.display_msg(conf, 'Will use explicit linkage against libintl in ' + user_gtk_root, 'yes')
- else:
- print ('\n\n**** Cannot locate libintl.h and PKG_CONFIG_PATH does not include ', user_gtk_root, '- this needs fixing before the build can continue')
- sys.exit (-1)
- else:
- print ('\n\n**** Cannot locate libintl.h and PKG_CONFIG_PATH is not set - this needs fixing before the build can continue')
+ autowaf.display_msg(conf, 'Will build against private GTK dependency stack', 'no')
+ if sys.platform == 'darwin':
+ conf.define ('NEED_INTL', 1)
+ autowaf.display_msg(conf, 'Will use explicit linkage against libintl in ' + user_gtk_root, 'yes')
+ else:
+ # libintl is part of the system, so use it
+ autowaf.display_msg(conf, 'Will rely on libintl built into libc', 'yes')
- user_ardour_root = os.path.expanduser ('~/a3/inst')
- if pkg_config_path is not None and os.getenv('PKG_CONFIG_PATH').find (user_ardour_root) >= 0:
- # XXXX hack hack hack
+ user_ardour_root = os.path.expanduser (Options.options.depstack_root + '/a3/inst')
+ if pkg_config_path is not None and pkg_config_path.find (user_ardour_root) >= 0:
+ # told to search user_ardour_root
prefinclude = ''.join ([ '-I', user_ardour_root + '/include'])
preflib = ''.join ([ '-L', user_ardour_root + '/lib'])
conf.env.append_value('CFLAGS', [ prefinclude ])
@@ -518,7 +515,7 @@ def configure(conf):
autowaf.display_msg(conf, 'Will build against private Ardour dependency stack in ' + user_ardour_root, 'yes')
else:
autowaf.display_msg(conf, 'Will build against private Ardour dependency stack', 'no')
-
+
if sys.platform == 'darwin':
# this is required, potentially, for anything we link and then relocate into a bundle