changeset 5371:5f7485bde75f

tools::libtiff: do not use c++. Fixes build.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Tue, 21 Jul 2009 21:55:40 +0200
parents e4c2715777db
children 6d541cf1792e
files gub/specs/libtiff.py
diffstat 1 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gub/specs/libtiff.py	Tue Jul 21 21:55:26 2009 +0200
+++ b/gub/specs/libtiff.py	Tue Jul 21 21:55:40 2009 +0200
@@ -8,4 +8,11 @@
 
 class Libtiff__tools (tools.AutoBuild, Libtiff):
     def _get_build_dependencies (self):
-        return ['libtool', 'libjpeg-devel']
+        return [
+            'libtool',
+            'libjpeg-devel',
+#            'system::g++',
+            ]
+    def configure_command (self):
+        return (tools.AutoBuild.configure_command (self)
+                + ' --disable-cxx')