yade-dev team mailing list archive
-
yade-dev team
-
Mailing list archive
-
Message #05671
[Branch ~yade-dev/yade/trunk] Rev 2435: 1. One more fix for compiling in Fedora
------------------------------------------------------------
revno: 2435
committer: Anton Gladky <gladky.anton@xxxxxxxxx>
branch nick: trunk
timestamp: Sun 2010-09-12 20:53:16 +0200
message:
1. One more fix for compiling in Fedora
modified:
SConstruct
--
lp:yade
https://code.launchpad.net/~yade-dev/yade/trunk
Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to https://code.launchpad.net/~yade-dev/yade/trunk/+edit-subscription
=== modified file 'SConstruct'
--- SConstruct 2010-09-12 16:52:20 +0000
+++ SConstruct 2010-09-12 18:53:16 +0000
@@ -388,7 +388,9 @@
ok=conf.CheckLibWithHeader(['qglviewer-qt4'],'QGLViewer/qglviewer.h','c++','QGLViewer();',autoadd=1)
okFedora=conf.CheckLibWithHeader(['libQGLViewer'],'QGLViewer/qglviewer.h','c++','QGLViewer();',autoadd=1)
if not (ok or okFedora): featureNotOK('opengl','Building with Qt4 implies the QGLViewer library installed (package libqglviewer-qt4-dev package in debian/ubuntu or libQGLViewer in RPM-based distros)')
- env['QGLVIEWER_LIB']='qglviewer-qt4';
+ if ok: env['QGLVIEWER_LIB']='qglviewer-qt4';
+ if okFedora: env['QGLVIEWER_LIB']='libQGLViewer';
+
if 'vtk' in env['features']:
ok=conf.CheckLibWithHeader(['vtkCommon'],'vtkInstantiator.h','c++','vtkInstantiator::New();',autoadd=1)
env.Append(LIBS='vtkHybrid')