Updated config.guess file
[ardour.git] / SConstruct
1 # -*- python -*-
2
3 import os
4 import sys
5 import re
6 import shutil
7 import glob
8 import errno
9 import time
10 import platform
11 import string
12 from sets import Set
13 import SCons.Node.FS
14
15 SConsignFile()
16 EnsureSConsVersion(0, 96)
17
18 version = '2.0beta2'
19
20 subst_dict = { }
21
22 #
23 # Command-line options
24 #
25
26 opts = Options('scache.conf')
27 opts.AddOptions(
28   ('ARCH', 'Set architecture-specific compilation flags by hand (all flags as 1 argument)',''),
29     BoolOption('COREAUDIO', 'Compile with Apple\'s CoreAudio library', 0),
30     BoolOption('DEBUG', 'Set to build with debugging information and no optimizations', 0),
31     PathOption('DESTDIR', 'Set the intermediate install "prefix"', '/'),
32     EnumOption('DIST_TARGET', 'Build target for cross compiling packagers', 'auto', allowed_values=('auto', 'i386', 'i686', 'x86_64', 'powerpc', 'tiger', 'panther', 'none' ), ignorecase=2),
33     BoolOption('DMALLOC', 'Compile and link using the dmalloc library', 0),
34     BoolOption('EXTRA_WARN', 'Compile with -Wextra, -ansi, and -pedantic.  Might break compilation.  For pedants', 0),
35     BoolOption('FFT_ANALYSIS', 'Include FFT analysis window', 0),
36     BoolOption('FPU_OPTIMIZATION', 'Build runtime checked assembler code', 1),
37     BoolOption('LIBLO', 'Compile with support for liblo library', 1),
38     BoolOption('NLS', 'Set to turn on i18n support', 1),
39     PathOption('PREFIX', 'Set the install "prefix"', '/usr/local'),
40     BoolOption('SURFACES', 'Build support for control surfaces', 0),
41     BoolOption('SYSLIBS', 'USE AT YOUR OWN RISK: CANCELS ALL SUPPORT FROM ARDOUR AUTHORS: Use existing system versions of various libraries instead of internal ones', 0),
42     BoolOption('VERSIONED', 'Add version information to ardour/gtk executable name inside the build directory', 0),
43     BoolOption('VST', 'Compile with support for VST', 0)
44 )
45
46 #----------------------------------------------------------------------
47 # a handy helper that provides a way to merge compile/link information
48 # from multiple different "environments"
49 #----------------------------------------------------------------------
50 #
51 class LibraryInfo(Environment):
52     def __init__(self,*args,**kw):
53         Environment.__init__ (self,*args,**kw)
54     
55     def Merge (self,others):
56         for other in others:
57             self.Append (LIBS = other.get ('LIBS',[]))
58             self.Append (LIBPATH = other.get ('LIBPATH', []))
59             self.Append (CPPPATH = other.get('CPPPATH', []))
60             self.Append (LINKFLAGS = other.get('LINKFLAGS', []))
61         self.Replace(LIBPATH = list(Set(self.get('LIBPATH', []))))
62         self.Replace(CPPPATH = list(Set(self.get('CPPPATH',[]))))
63         #doing LINKFLAGS breaks -framework
64         #doing LIBS break link order dependency
65     
66     def ENV_update(self, src_ENV):
67         for k in src_ENV.keys():
68             if k in self['ENV'].keys() and k in [ 'PATH', 'LD_LIBRARY_PATH',
69                                                   'LIB', 'INCLUDE' ]:
70                 self['ENV'][k]=SCons.Util.AppendPath(self['ENV'][k], src_ENV[k])
71             else:
72                 self['ENV'][k]=src_ENV[k]
73
74 env = LibraryInfo (options = opts,
75                    CPPPATH = [ '.' ],
76                    VERSION = version,
77                    TARBALL='ardour-' + version + '.tar.bz2',
78                    DISTFILES = [ ],
79                    DISTTREE  = '#ardour-' + version,
80                    DISTCHECKDIR = '#ardour-' + version + '/check'
81                    )
82
83 env.ENV_update(os.environ)
84
85 #----------------------------------------------------------------------
86 # Builders
87 #----------------------------------------------------------------------
88
89 # Handy subst-in-file builder
90 #
91
92 def do_subst_in_file(targetfile, sourcefile, dict):
93     """Replace all instances of the keys of dict with their values.
94     For example, if dict is {'%VERSION%': '1.2345', '%BASE%': 'MyProg'},
95     then all instances of %VERSION% in the file will be replaced with 1.2345 etc.
96     """
97     try:
98         f = open(sourcefile, 'rb')
99         contents = f.read()
100         f.close()
101     except:
102         raise SCons.Errors.UserError, "Can't read source file %s"%sourcefile
103     for (k,v) in dict.items():
104         contents = re.sub(k, v, contents)
105     try:
106         f = open(targetfile, 'wb')
107         f.write(contents)
108         f.close()
109     except:
110         raise SCons.Errors.UserError, "Can't write target file %s"%targetfile
111     return 0 # success
112
113 def subst_in_file(target, source, env):
114     if not env.has_key('SUBST_DICT'):
115         raise SCons.Errors.UserError, "SubstInFile requires SUBST_DICT to be set."
116     d = dict(env['SUBST_DICT']) # copy it
117     for (k,v) in d.items():
118         if callable(v):
119             d[k] = env.subst(v())
120         elif SCons.Util.is_String(v):
121             d[k]=env.subst(v)
122         else:
123             raise SCons.Errors.UserError, "SubstInFile: key %s: %s must be a string or callable"%(k, repr(v))
124     for (t,s) in zip(target, source):
125         return do_subst_in_file(str(t), str(s), d)
126
127 def subst_in_file_string(target, source, env):
128     """This is what gets printed on the console."""
129     return '\n'.join(['Substituting vars from %s into %s'%(str(s), str(t))
130                       for (t,s) in zip(target, source)])
131
132 def subst_emitter(target, source, env):
133     """Add dependency from substituted SUBST_DICT to target.
134     Returns original target, source tuple unchanged.
135     """
136     d = env['SUBST_DICT'].copy() # copy it
137     for (k,v) in d.items():
138         if callable(v):
139             d[k] = env.subst(v())
140         elif SCons.Util.is_String(v):
141             d[k]=env.subst(v)
142     Depends(target, SCons.Node.Python.Value(d))
143     # Depends(target, source) # this doesn't help the install-sapphire-linux.sh problem
144     return target, source
145
146 subst_action = Action (subst_in_file, subst_in_file_string)
147 env['BUILDERS']['SubstInFile'] = Builder(action=subst_action, emitter=subst_emitter)
148
149 #
150 # internationalization
151 #
152
153 # po_builder: builder function to copy po files to the parent directory while updating them
154 #
155 # first source:  .po file
156 # second source: .pot file
157 #
158
159 def po_builder(target,source,env):
160     os.spawnvp (os.P_WAIT, 'cp', ['cp', str(source[0]), str(target[0])])
161     args = [ 'msgmerge',
162              '--update',
163              str(target[0]),
164              str(source[1])
165              ]
166     print 'Updating ' + str(target[0])
167     return os.spawnvp (os.P_WAIT, 'msgmerge', args)
168
169 po_bld = Builder (action = po_builder)
170 env.Append(BUILDERS = {'PoBuild' : po_bld})
171
172 # mo_builder: builder function for (binary) message catalogs (.mo)
173 #
174 # first source:  .po file
175 #
176
177 def mo_builder(target,source,env):
178     args = [ 'msgfmt',
179              '-c',
180              '-o',
181              target[0].get_path(),
182              source[0].get_path()
183              ]
184     return os.spawnvp (os.P_WAIT, 'msgfmt', args)
185
186 mo_bld = Builder (action = mo_builder)
187 env.Append(BUILDERS = {'MoBuild' : mo_bld})
188
189 # pot_builder: builder function for message templates (.pot)
190 #
191 # source: list of C/C++ etc. files to extract messages from
192 #
193
194 def pot_builder(target,source,env):
195     args = [ 'xgettext',
196              '--keyword=_',
197              '--keyword=N_',
198              '--from-code=UTF-8',
199              '-o', target[0].get_path(),
200              "--default-domain=" + env['PACKAGE'],
201              '--copyright-holder="Paul Davis"' ]
202     args += [ src.get_path() for src in source ]
203     
204     return os.spawnvp (os.P_WAIT, 'xgettext', args)
205
206 pot_bld = Builder (action = pot_builder)
207 env.Append(BUILDERS = {'PotBuild' : pot_bld})
208
209 #
210 # utility function, not a builder
211 #
212
213 def i18n (buildenv, sources, installenv):
214     domain = buildenv['PACKAGE']
215     potfile = buildenv['POTFILE']
216     
217     installenv.Alias ('potupdate', buildenv.PotBuild (potfile, sources))
218     
219     p_oze = [ os.path.basename (po) for po in glob.glob ('po/*.po') ]
220     languages = [ po.replace ('.po', '') for po in p_oze ]
221     
222     for po_file in p_oze:
223         buildenv.PoBuild(po_file, ['po/'+po_file, potfile])
224         mo_file = po_file.replace (".po", ".mo")
225         installenv.Alias ('install', buildenv.MoBuild (mo_file, po_file))
226     
227     for lang in languages:
228         modir = (os.path.join (install_prefix, 'share/locale/' + lang + '/LC_MESSAGES/'))
229         moname = domain + '.mo'
230         installenv.Alias('install', installenv.InstallAs (os.path.join (modir, moname), lang + '.mo'))
231
232 #
233 # A generic builder for version.cc files
234 #
235 # note: requires that DOMAIN, MAJOR, MINOR, MICRO are set in the construction environment
236 # note: assumes one source files, the header that declares the version variables
237 #
238 def version_builder (target, source, env):
239    text  = "int " + env['DOMAIN'] + "_major_version = " + str (env['MAJOR']) + ";\n"
240    text += "int " + env['DOMAIN'] + "_minor_version = " + str (env['MINOR']) + ";\n"
241    text += "int " + env['DOMAIN'] + "_micro_version = " + str (env['MICRO']) + ";\n"
242    
243    try:
244       o = file (target[0].get_path(), 'w')
245       o.write (text)
246       o.close ()
247    except IOError:
248       print "Could not open", target[0].get_path(), " for writing\n"
249       sys.exit (-1)
250    
251    text  = "#ifndef __" + env['DOMAIN'] + "_version_h__\n"
252    text += "#define __" + env['DOMAIN'] + "_version_h__\n"
253    text += "extern int " + env['DOMAIN'] + "_major_version;\n"
254    text += "extern int " + env['DOMAIN'] + "_minor_version;\n"
255    text += "extern int " + env['DOMAIN'] + "_micro_version;\n"
256    text += "#endif /* __" + env['DOMAIN'] + "_version_h__ */\n"
257    
258    try:
259       o = file (target[1].get_path(), 'w')
260       o.write (text)
261       o.close ();
262    except IOError:
263       print "Could not open", target[1].get_path(), " for writing\n"
264       sys.exit (-1)
265    
266    return None
267
268 version_bld = Builder (action = version_builder)
269 env.Append (BUILDERS = {'VersionBuild' : version_bld})
270
271 #
272 # a builder that makes a hard link from the 'source' executable to a name with
273 # a "build ID" based on the most recent CVS activity that might be reasonably
274 # related to version activity. this relies on the idea that the SConscript
275 # file that builds the executable is updated with new version info and committed
276 # to the source code repository whenever things change.
277 #
278
279 def versioned_builder(target,source,env):
280     # build ID is composed of a representation of the date of the last CVS transaction
281     # for this (SConscript) file
282     
283     try:
284         o = file (source[0].get_dir().get_path() +  '/CVS/Entries', "r")
285     except IOError:
286         print "Could not CVS/Entries for reading"
287         return -1
288     
289     last_date = ""
290     lines = o.readlines()
291     for line in lines:
292         if line[0:12] == '/SConscript/':
293             parts = line.split ("/")
294             last_date = parts[3]
295             break
296     o.close ()
297     
298     if last_date == "":
299         print "No SConscript CVS update info found - versioned executable cannot be built"
300         return -1
301     
302     tag = time.strftime ('%Y%M%d%H%m', time.strptime (last_date))
303     print "The current build ID is " + tag
304     
305     tagged_executable = source[0].get_path() + '-' + tag
306     
307     if os.path.exists (tagged_executable):
308         print "Replacing existing executable with the same build tag."
309         os.unlink (tagged_executable)
310     
311     return os.link (source[0].get_path(), tagged_executable)
312
313 verbuild = Builder (action = versioned_builder)
314 env.Append (BUILDERS = {'VersionedExecutable' : verbuild})
315
316 #
317 # source tar file builder
318 #
319
320 def distcopy (target, source, env):
321     treedir = str (target[0])
322     
323     try:
324         os.mkdir (treedir)
325     except OSError, (errnum, strerror):
326         if errnum != errno.EEXIST:
327             print 'mkdir ', treedir, ':', strerror
328     
329     cmd = 'tar cf - '
330     #
331     # we don't know what characters might be in the file names
332     # so quote them all before passing them to the shell
333     #
334     all_files = ([ str(s) for s in source ])
335     cmd += " ".join ([ "'%s'" % quoted for quoted in all_files])
336     cmd += ' | (cd ' + treedir + ' && tar xf -)'
337     p = os.popen (cmd)
338     return p.close ()
339
340 def tarballer (target, source, env):
341     cmd = 'tar -jcf ' + str (target[0]) +  ' ' + str(source[0]) + "  --exclude '*~'"
342     print 'running ', cmd, ' ... '
343     p = os.popen (cmd)
344     return p.close ()
345
346 dist_bld = Builder (action = distcopy,
347                     target_factory = SCons.Node.FS.default_fs.Entry,
348                     source_factory = SCons.Node.FS.default_fs.Entry,
349                     multi = 1)
350
351 tarball_bld = Builder (action = tarballer,
352                        target_factory = SCons.Node.FS.default_fs.Entry,
353                        source_factory = SCons.Node.FS.default_fs.Entry)
354
355 env.Append (BUILDERS = {'Distribute' : dist_bld})
356 env.Append (BUILDERS = {'Tarball' : tarball_bld})
357
358 #
359 # Make sure they know what they are doing
360 #
361
362 if env['VST']:
363     sys.stdout.write ("Are you building Ardour for personal use (rather than distributiont to others)? [no]: ")
364     answer = sys.stdin.readline ()
365     answer = answer.rstrip().strip()
366     if answer != "yes" and answer != "y":
367         print 'You cannot build Ardour with VST support for distribution to others.\nIt is a violation of several different licenses. VST support disabled.'
368         env['VST'] = 0;
369     else:
370         print "OK, VST support will be enabled"
371
372
373 # ----------------------------------------------------------------------
374 # Construction environment setup
375 # ----------------------------------------------------------------------
376
377 libraries = { }
378
379 libraries['core'] = LibraryInfo (CCFLAGS = '-Ilibs')
380
381 #libraries['sndfile'] = LibraryInfo()
382 #libraries['sndfile'].ParseConfig('pkg-config --cflags --libs sndfile')
383
384 libraries['lrdf'] = LibraryInfo()
385 libraries['lrdf'].ParseConfig('pkg-config --cflags --libs lrdf')
386
387 libraries['raptor'] = LibraryInfo()
388 libraries['raptor'].ParseConfig('pkg-config --cflags --libs raptor')
389
390 libraries['samplerate'] = LibraryInfo()
391 libraries['samplerate'].ParseConfig('pkg-config --cflags --libs samplerate')
392
393 if env['FFT_ANALYSIS']:
394         libraries['fftw3f'] = LibraryInfo()
395         libraries['fftw3f'].ParseConfig('pkg-config --cflags --libs fftw3f')
396
397 libraries['jack'] = LibraryInfo()
398 libraries['jack'].ParseConfig('pkg-config --cflags --libs jack')
399
400 libraries['xml'] = LibraryInfo()
401 libraries['xml'].ParseConfig('pkg-config --cflags --libs libxml-2.0')
402
403 libraries['xslt'] = LibraryInfo()
404 libraries['xslt'].ParseConfig('pkg-config --cflags --libs libxslt')
405
406 libraries['glib2'] = LibraryInfo()
407 libraries['glib2'].ParseConfig ('pkg-config --cflags --libs glib-2.0')
408 libraries['glib2'].ParseConfig ('pkg-config --cflags --libs gobject-2.0')
409 libraries['glib2'].ParseConfig ('pkg-config --cflags --libs gmodule-2.0')
410 libraries['glib2'].ParseConfig ('pkg-config --cflags --libs gthread-2.0')
411
412 libraries['gtk2'] = LibraryInfo()
413 libraries['gtk2'].ParseConfig ('pkg-config --cflags --libs gtk+-2.0')
414
415 libraries['pango'] = LibraryInfo()
416 libraries['pango'].ParseConfig ('pkg-config --cflags --libs pango')
417
418 libraries['libgnomecanvas2'] = LibraryInfo()
419 libraries['libgnomecanvas2'].ParseConfig ('pkg-config --cflags --libs libgnomecanvas-2.0')
420
421 #libraries['flowcanvas'] = LibraryInfo(LIBS='flowcanvas', LIBPATH='#/libs/flowcanvas', CPPPATH='#libs/flowcanvas')
422
423 # The Ardour Control Protocol Library
424
425 libraries['ardour_cp'] = LibraryInfo (LIBS='ardour_cp', LIBPATH='#libs/surfaces/control_protocol',
426                                       CPPPATH='#libs/surfaces/control_protocol')
427
428 # The Ardour backend/engine
429
430 libraries['ardour'] = LibraryInfo (LIBS='ardour', LIBPATH='#libs/ardour', CPPPATH='#libs/ardour')
431 libraries['midi++2'] = LibraryInfo (LIBS='midi++', LIBPATH='#libs/midi++2', CPPPATH='#libs/midi++2')
432 libraries['pbd']    = LibraryInfo (LIBS='pbd', LIBPATH='#libs/pbd', CPPPATH='#libs/pbd')
433 libraries['gtkmm2ext'] = LibraryInfo (LIBS='gtkmm2ext', LIBPATH='#libs/gtkmm2ext', CPPPATH='#libs/gtkmm2ext')
434
435 #
436 # Check for libusb
437
438 libraries['usb'] = LibraryInfo ()
439
440 conf = Configure (libraries['usb'])
441 if conf.CheckLib ('usb', 'usb_interrupt_write'):
442     have_libusb = True
443 else:
444     have_libusb = False
445
446 libraries['usb'] = conf.Finish ()
447
448 #
449 # Check for FLAC
450
451 libraries['flac'] = LibraryInfo ()
452
453 conf = Configure (libraries['flac'])
454 conf.CheckLib ('FLAC', 'FLAC__stream_decoder_new')
455 libraries['flac'] = conf.Finish ()
456
457 #
458 # Check for liblo
459
460 if env['LIBLO']:
461     libraries['lo'] = LibraryInfo ()
462     
463     conf = Configure (libraries['lo'])
464     if conf.CheckLib ('lo', 'lo_server_new') == False:
465         print "liblo does not appear to be installed."
466         sys.exit (1)
467     
468     libraries['lo'] = conf.Finish ()
469
470 #
471 # Check for dmalloc
472
473 libraries['dmalloc'] = LibraryInfo ()
474
475 #
476 # look for the threaded version
477 #
478
479 conf = Configure (libraries['dmalloc'])
480 if conf.CheckLib ('dmallocth', 'dmalloc_shutdown'):
481     have_libdmalloc = True
482 else:
483     have_libdmalloc = False
484
485 libraries['dmalloc'] = conf.Finish ()
486
487 #
488
489 #
490 # Audio/MIDI library (needed for MIDI, since audio is all handled via JACK)
491 #
492
493 conf = Configure(env)
494
495 if conf.CheckCHeader('alsa/asoundlib.h'):
496     libraries['sysmidi'] = LibraryInfo (LIBS='asound')
497     env['SYSMIDI'] = 'ALSA Sequencer'
498     subst_dict['%MIDITAG%'] = "seq"
499     subst_dict['%MIDITYPE%'] = "alsa/sequencer"
500 elif conf.CheckCHeader('/System/Library/Frameworks/CoreMIDI.framework/Headers/CoreMIDI.h'):
501     # this line is needed because scons can't handle -framework in ParseConfig() yet.
502     libraries['sysmidi'] = LibraryInfo (LINKFLAGS= '-framework CoreMIDI -framework CoreFoundation -framework CoreAudio -framework CoreServices -framework AudioUnit -framework AudioToolbox -bind_at_load')
503     env['SYSMIDI'] = 'CoreMIDI'
504     subst_dict['%MIDITAG%'] = "ardour"
505     subst_dict['%MIDITYPE%'] = "coremidi"
506 else:
507     print "It appears you don't have the required MIDI libraries installed."
508     sys.exit (1)
509
510 env = conf.Finish()
511
512 if env['SYSLIBS']:
513     
514     libraries['sigc2'] = LibraryInfo()
515     libraries['sigc2'].ParseConfig('pkg-config --cflags --libs sigc++-2.0')
516     libraries['glibmm2'] = LibraryInfo()
517     libraries['glibmm2'].ParseConfig('pkg-config --cflags --libs glibmm-2.4')
518     libraries['gdkmm2'] = LibraryInfo()
519     libraries['gdkmm2'].ParseConfig ('pkg-config --cflags --libs gdkmm-2.4')
520     libraries['gtkmm2'] = LibraryInfo()
521     libraries['gtkmm2'].ParseConfig ('pkg-config --cflags --libs gtkmm-2.4')
522     libraries['atkmm'] = LibraryInfo()
523     libraries['atkmm'].ParseConfig ('pkg-config --cflags --libs atkmm-1.6')
524     libraries['pangomm'] = LibraryInfo()
525     libraries['pangomm'].ParseConfig ('pkg-config --cflags --libs pangomm-1.4')
526     libraries['libgnomecanvasmm'] = LibraryInfo()
527     libraries['libgnomecanvasmm'].ParseConfig ('pkg-config --cflags --libs libgnomecanvasmm-2.6')
528
529 #
530 # cannot use system one for the time being
531 #
532     
533     libraries['sndfile'] = LibraryInfo(LIBS='libsndfile',
534                                     LIBPATH='#libs/libsndfile',
535                                     CPPPATH=['#libs/libsndfile', '#libs/libsndfile/src'])
536
537 #    libraries['libglademm'] = LibraryInfo()
538 #    libraries['libglademm'].ParseConfig ('pkg-config --cflags --libs libglademm-2.4')
539
540 #    libraries['flowcanvas'] = LibraryInfo(LIBS='flowcanvas', LIBPATH='#/libs/flowcanvas', CPPPATH='#libs/flowcanvas')
541     libraries['soundtouch'] = LibraryInfo()
542     libraries['soundtouch'].ParseConfig ('pkg-config --cflags --libs soundtouch-1.0')
543     
544     coredirs = [
545         'templates'
546     ]
547     
548     subdirs = [
549         'libs/libsndfile',
550         'libs/pbd',
551         'libs/midi++2',
552         'libs/ardour'
553         ]
554     
555     if env['VST']:
556         subdirs = ['libs/fst'] + subdirs + ['vst']
557     
558     gtk_subdirs = [
559 #        'libs/flowcanvas',
560         'libs/gtkmm2ext',
561         'gtk2_ardour'
562         ]
563
564 else:
565     libraries['sigc2'] = LibraryInfo(LIBS='sigc++2',
566                                     LIBPATH='#libs/sigc++2',
567                                     CPPPATH='#libs/sigc++2')
568     libraries['glibmm2'] = LibraryInfo(LIBS='glibmm2',
569                                     LIBPATH='#libs/glibmm2',
570                                     CPPPATH='#libs/glibmm2')
571     libraries['pangomm'] = LibraryInfo(LIBS='pangomm',
572                                     LIBPATH='#libs/gtkmm2/pango',
573                                     CPPPATH='#libs/gtkmm2/pango')
574     libraries['atkmm'] = LibraryInfo(LIBS='atkmm',
575                                      LIBPATH='#libs/gtkmm2/atk',
576                                      CPPPATH='#libs/gtkmm2/atk')
577     libraries['gdkmm2'] = LibraryInfo(LIBS='gdkmm2',
578                                       LIBPATH='#libs/gtkmm2/gdk',
579                                       CPPPATH='#libs/gtkmm2/gdk')
580     libraries['gtkmm2'] = LibraryInfo(LIBS='gtkmm2',
581                                      LIBPATH="#libs/gtkmm2/gtk",
582                                      CPPPATH='#libs/gtkmm2/gtk/')
583     libraries['libgnomecanvasmm'] = LibraryInfo(LIBS='libgnomecanvasmm',
584                                                 LIBPATH='#libs/libgnomecanvasmm',
585                                                 CPPPATH='#libs/libgnomecanvasmm')
586     
587     libraries['soundtouch'] = LibraryInfo(LIBS='soundtouch',
588                                           LIBPATH='#libs/soundtouch',
589                                           CPPPATH=['#libs', '#libs/soundtouch'])
590     libraries['sndfile'] = LibraryInfo(LIBS='libsndfile',
591                                     LIBPATH='#libs/libsndfile',
592                                     CPPPATH=['#libs/libsndfile', '#libs/libsndfile/src'])
593 #    libraries['libglademm'] = LibraryInfo(LIBS='libglademm',
594 #                                          LIBPATH='#libs/libglademm',
595 #                                          CPPPATH='#libs/libglademm')
596     
597     coredirs = [
598         'libs/soundtouch',
599         'templates'
600     ]
601     
602     subdirs = [
603         'libs/sigc++2',
604         'libs/libsndfile',
605         'libs/pbd',
606         'libs/midi++2',
607         'libs/ardour'
608         ]
609     
610     if env['VST']:
611         subdirs = ['libs/fst'] + subdirs + ['vst']
612     
613     gtk_subdirs = [
614         'libs/glibmm2',
615         'libs/gtkmm2/pango',
616         'libs/gtkmm2/atk',
617         'libs/gtkmm2/gdk',
618         'libs/gtkmm2/gtk',
619         'libs/libgnomecanvasmm',
620 #       'libs/flowcanvas',
621     'libs/gtkmm2ext',
622     'gtk2_ardour'
623         ]
624
625 #
626 # always build the LGPL control protocol lib, since we link against it ourselves
627 # ditto for generic MIDI
628 #
629
630 surface_subdirs = [ 'libs/surfaces/control_protocol', 'libs/surfaces/generic_midi' ]
631
632 if env['SURFACES']:
633     if have_libusb:
634         surface_subdirs += [ 'libs/surfaces/tranzport' ]
635     if os.access ('libs/surfaces/sony9pin', os.F_OK):
636         surface_subdirs += [ 'libs/surfaces/sony9pin' ]
637
638 opts.Save('scache.conf', env)
639 Help(opts.GenerateHelpText(env))
640
641 if os.environ.has_key('PATH'):
642     env.Append(PATH = os.environ['PATH'])
643
644 if os.environ.has_key('PKG_CONFIG_PATH'):
645     env.Append(PKG_CONFIG_PATH = os.environ['PKG_CONFIG_PATH'])
646
647 if os.environ.has_key('CC'):
648     env['CC'] = os.environ['CC']
649
650 if os.environ.has_key('CXX'):
651     env['CXX'] = os.environ['CXX']
652
653 if os.environ.has_key('DISTCC_HOSTS'):
654     env['ENV']['DISTCC_HOSTS'] = os.environ['DISTCC_HOSTS']
655     env['ENV']['HOME'] = os.environ['HOME']
656
657 final_prefix = '$PREFIX'
658 install_prefix = '$DESTDIR/$PREFIX'
659
660 subst_dict['INSTALL_PREFIX'] = install_prefix;
661
662 if env['PREFIX'] == '/usr':
663     final_config_prefix = '/etc'
664 else:
665     final_config_prefix = env['PREFIX'] + '/etc'
666
667 config_prefix = '$DESTDIR' + final_config_prefix
668
669
670 # SCons should really do this for us
671
672 conf = Configure (env)
673
674 have_cxx = conf.TryAction (Action (env['CXX'] + ' --version'))
675 if have_cxx[0] != 1:
676     print "This system has no functional C++ compiler. You cannot build Ardour from source without one."
677     exit (1)
678 else:
679     print "Congratulations, you have a functioning C++ compiler."
680
681 env = conf.Finish()
682
683 #
684 # Compiler flags and other system-dependent stuff
685 #
686
687 opt_flags = []
688 debug_flags = [ '-g' ]
689
690 # guess at the platform, used to define compiler flags
691
692 config_guess = os.popen("tools/config.guess").read()[:-1]
693
694 config_cpu = 0
695 config_arch = 1
696 config_kernel = 2
697 config_os = 3
698 config = config_guess.split ("-")
699
700 print "system triple: " + config_guess
701
702 # Autodetect
703 if env['DIST_TARGET'] == 'auto':
704     if config[config_arch] == 'apple':
705         # The [.] matches to the dot after the major version, "." would match any character
706         if re.search ("darwin[0-7][.]", config[config_kernel]) != None:
707             env['DIST_TARGET'] = 'panther'
708         else:
709             env['DIST_TARGET'] = 'tiger'
710     else:
711         if re.search ("x86_64", config[config_cpu]) != None:
712             env['DIST_TARGET'] = 'x86_64'
713         elif re.search("i[0-5]86", config[config_cpu]) != None:
714             env['DIST_TARGET'] = 'i386'
715         elif re.search("powerpc", config[config_cpu]) != None:
716             env['DIST_TARGET'] = 'powerpc'
717         else:
718             env['DIST_TARGET'] = 'i686'
719     print "\n*******************************"
720     print "detected DIST_TARGET = " + env['DIST_TARGET']
721     print "*******************************\n"
722
723
724 if config[config_cpu] == 'powerpc' and env['DIST_TARGET'] != 'none':
725     #
726     # Apple/PowerPC optimization options
727     #
728     # -mcpu=7450 does not reliably work with gcc 3.*
729     #
730     if env['DIST_TARGET'] == 'panther' or env['DIST_TARGET'] == 'tiger':
731         if config[config_arch] == 'apple':
732             opt_flags.extend ([ "-mcpu=7450", "-faltivec"])
733         else:
734             opt_flags.extend ([ "-mcpu=7400", "-maltivec", "-mabi=altivec"])
735     else:
736         opt_flags.extend([ "-mcpu=750", "-mmultiple" ])
737     opt_flags.extend (["-mhard-float", "-mpowerpc-gfxopt"])
738
739 elif ((re.search ("i[0-9]86", config[config_cpu]) != None) or (re.search ("x86_64", config[config_cpu]) != None)) and env['DIST_TARGET'] != 'none':
740     
741     build_host_supports_sse = 0
742     
743     debug_flags.append ("-DARCH_X86")
744     opt_flags.append ("-DARCH_X86")
745     
746     if config[config_kernel] == 'linux' :
747         
748         if env['DIST_TARGET'] != 'i386':
749             
750             flag_line = os.popen ("cat /proc/cpuinfo | grep '^flags'").read()[:-1]
751             x86_flags = flag_line.split (": ")[1:][0].split (' ')
752             
753             if "mmx" in x86_flags:
754                 opt_flags.append ("-mmmx")
755             if "sse" in x86_flags:
756                 build_host_supports_sse = 1
757             if "3dnow" in x86_flags:
758                 opt_flags.append ("-m3dnow")
759             
760             if config[config_cpu] == "i586":
761                 opt_flags.append ("-march=i586")
762             elif config[config_cpu] == "i686":
763                 opt_flags.append ("-march=i686")
764     
765     if ((env['DIST_TARGET'] == 'i686') or (env['DIST_TARGET'] == 'x86_64')) and build_host_supports_sse:
766         opt_flags.extend (["-msse", "-mfpmath=sse"])
767         debug_flags.extend (["-msse", "-mfpmath=sse"])
768 # end of processor-specific section
769
770 # optimization section
771 if env['FPU_OPTIMIZATION']:
772     if env['DIST_TARGET'] == 'tiger':
773         opt_flags.append ("-DBUILD_VECLIB_OPTIMIZATIONS")
774         debug_flags.append ("-DBUILD_VECLIB_OPTIMIZATIONS")
775         libraries['core'].Append(LINKFLAGS= '-framework Accelerate')
776     elif env['DIST_TARGET'] == 'i686' or env['DIST_TARGET'] == 'x86_64':
777         opt_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
778         debug_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
779         if env['DIST_TARGET'] == 'x86_64':
780             opt_flags.append ("-DUSE_X86_64_ASM")
781             debug_flags.append ("-DUSE_X86_64_ASM")
782         if build_host_supports_sse != 1:
783             print "\nWarning: you are building Ardour with SSE support even though your system does not support these instructions. (This may not be an error, especially if you are a package maintainer)"
784 # end optimization section
785
786 #
787 # save off guessed arch element in an env
788 #
789 env.Append(CONFIG_ARCH=config[config_arch])
790
791
792 #
793 # ARCH="..." overrides all
794 #
795
796 if env['ARCH'] != '':
797     opt_flags = env['ARCH'].split()
798
799 #
800 # prepend boiler plate optimization flags
801 #
802
803 opt_flags[:0] = [
804     "-O3",
805     "-fomit-frame-pointer",
806     "-ffast-math",
807     "-fstrength-reduce"
808     ]
809
810 if env['DEBUG'] == 1:
811     env.Append(CCFLAGS=" ".join (debug_flags))
812 else:
813     env.Append(CCFLAGS=" ".join (opt_flags))
814
815 #
816 # warnings flags
817 #
818
819 env.Append(CCFLAGS="-Wall")
820 env.Append(CXXFLAGS="-Woverloaded-virtual")
821
822 if env['EXTRA_WARN']:
823     env.Append(CCFLAGS="-Wextra -pedantic")
824     env.Append(CXXFLAGS="-ansi")
825
826 if env['LIBLO']:
827     env.Append(CCFLAGS="-DHAVE_LIBLO")
828
829 #
830 # everybody needs this
831 #
832
833 env.Merge ([ libraries['core'] ])
834
835 #
836 # fix scons nitpickiness on APPLE
837 #
838
839 if env['DIST_TARGET'] == 'panther' or env['DIST_TARGET'] == 'tiger':
840     env.Append(CCFLAGS="-I/opt/local/include", LINKFLAGS="-L/opt/local/lib")
841
842 #
843 # i18n support
844 #
845
846 conf = Configure (env)
847 if env['NLS']:
848     nls_error = 'This system is not configured for internationalized applications.  An english-only version will be built:'
849     print 'Checking for internationalization support ...'
850     have_gettext = conf.TryAction(Action('xgettext --version'))
851     if have_gettext[0] != 1:
852         nls_error += ' No xgettext command.'
853         env['NLS'] = 0
854     else:
855         print "Found xgettext"
856     
857     have_msgmerge = conf.TryAction(Action('msgmerge --version'))
858     if have_msgmerge[0] != 1:
859         nls_error += ' No msgmerge command.'
860         env['NLS'] = 0
861     else:
862         print "Found msgmerge"
863     
864     if not conf.CheckCHeader('libintl.h'):
865         nls_error += ' No libintl.h.'
866         env['NLS'] = 0
867         
868     if env['NLS'] == 0:
869         print nls_error
870     else:
871         print "International version will be built."
872 env = conf.Finish()
873
874 if env['NLS'] == 1:
875     env.Append(CCFLAGS="-DENABLE_NLS")
876
877 Export('env install_prefix final_prefix config_prefix final_config_prefix libraries i18n version subst_dict')
878
879 #
880 # the configuration file may be system dependent
881 #
882
883 conf = env.Configure ()
884
885 if conf.CheckCHeader('/System/Library/Frameworks/CoreAudio.framework/Versions/A/Headers/CoreAudio.h'):
886     subst_dict['%JACK_INPUT%'] = "coreaudio:Built-in Audio:in"
887     subst_dict['%JACK_OUTPUT%'] = "coreaudio:Built-in Audio:out"
888 else:
889     subst_dict['%JACK_INPUT%'] = "alsa_pcm:playback_"
890     subst_dict['%JACK_OUTPUT%'] = "alsa_pcm:capture_"
891
892 # posix_memalign available
893 if not conf.CheckFunc('posix_memalign'):
894     print 'Did not find posix_memalign(), using malloc'
895     env.Append(CCFLAGS='-DNO_POSIX_MEMALIGN')
896
897
898 env = conf.Finish()
899
900 rcbuild = env.SubstInFile ('ardour.rc','ardour.rc.in', SUBST_DICT = subst_dict)
901
902 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour_system.rc'))
903 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour.rc'))
904
905 Default (rcbuild)
906
907 # source tarball
908
909 Precious (env['DISTTREE'])
910
911 #
912 # note the special "cleanfirst" source name. this triggers removal
913 # of the existing disttree
914 #
915
916 env.Distribute (env['DISTTREE'],
917                 [ 'SConstruct',
918                   'COPYING', 'PACKAGER_README', 'README',
919                   'ardour.rc.in',
920                   'ardour_system.rc',
921                   'tools/config.guess'
922                   ] +
923                 glob.glob ('DOCUMENTATION/AUTHORS*') +
924                 glob.glob ('DOCUMENTATION/CONTRIBUTORS*') +
925                 glob.glob ('DOCUMENTATION/TRANSLATORS*') +
926                 glob.glob ('DOCUMENTATION/BUILD*') +
927                 glob.glob ('DOCUMENTATION/FAQ*') +
928                 glob.glob ('DOCUMENTATION/README*')
929                 )
930
931 srcdist = env.Tarball(env['TARBALL'], env['DISTTREE'])
932 env.Alias ('srctar', srcdist)
933 #
934 # don't leave the distree around
935 #
936 env.AddPreAction (env['DISTTREE'], Action ('rm -rf ' + str (File (env['DISTTREE']))))
937 env.AddPostAction (srcdist, Action ('rm -rf ' + str (File (env['DISTTREE']))))
938
939 #
940 # the subdirs
941 #
942
943 for subdir in coredirs:
944     SConscript (subdir + '/SConscript')
945
946 for sublistdir in [ subdirs, gtk_subdirs, surface_subdirs ]:
947     for subdir in sublistdir:
948         SConscript (subdir + '/SConscript')
949
950 # cleanup
951 env.Clean ('scrub', [ 'scache.conf', '.sconf_temp', '.sconsign.dblite', 'config.log'])
952