Al West writes: > > Thanks for the all the help guys I finally got a working version of > flightgear running just fine. However that won't be the last of me if > you subscribe to terragear lists too. I notice that there is a Golden > Gate bridge pictured in the clouds3d_gg.jpg that Norman Vine posted > about 2 weeks back - I look forward to when 3Dclouds arrives in the CVS.
The 3DClouds are in the CVS, but they are not enabled by default You can enable them by adding -DFG_USE_CLOUDS_3D to your FlightGear CXX FLAGS or perhaps easier applying the patch below to configure.ac then adding --with-clouds3d to your configure args HTH Norman $ cvs diff configure.ac 2>&1 | tee configure.ac.diff Index: configure.ac =================================================================== RCS file: /var/cvs/FlightGear-0.9/FlightGear/configure.ac,v retrieving revision 1.43 diff -r1.43 configure.ac 125,126c125,133 < AC_DEFINE([FG_USE_CLOUDS_3D], 1, [Define to use 3D cloud support]) < AM_CONDITIONAL(FG_USE_CLOUDS_3D, test "x" = "x") --- > AC_ARG_WITH(clouds3d, [ --with-clouds3d Compile with Clouds3D]) > if test "x$with_clouds3d" = "xyes" ; then > echo "Building with Clouds3D" > AC_DEFINE([FG_USE_CLOUDS_3D], 1, > [Define to build with Clouds3D enabled]) > else > echo "Building without Clouds3D" > fi > AM_CONDITIONAL(FG_USE_CLOUDS_3D, test "x$with_clouds3d" = "xyes") _______________________________________________ Flightgear-devel mailing list [EMAIL PROTECTED] http://mail.flightgear.org/mailman/listinfo/flightgear-devel
