[artoolkit-commits] artoolkit Configure,1.7,1.8
Optical marker tracking and overlay for augmented reality.
Brought to you by:
philip_lamb
From: Wayne P. <ti...@us...> - 2006-09-15 03:08:45
|
Update of /cvsroot/artoolkit/artoolkit In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv6406 Modified Files: Configure Log Message: The DRAGONFLY flag in the Linux 1394 DC code was never implemented properly or used for anything. Since we now have proper DragonFly camera support in the video 1394 code, I have removed this flag because otherwise it will be confusing for future developers. Index: Configure =================================================================== RCS file: /cvsroot/artoolkit/artoolkit/Configure,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Configure 30 Jun 2006 13:13:13 -0000 1.7 --- Configure 15 Sep 2006 03:08:17 -0000 1.8 *************** *** 75,92 **** LIBS="-lglut -lGLU -lGL -lXi -lXmu -lX11 -lm -lraw1394 -ldc1394_control" CONFIG="AR_INPUT_1394CAM" - - echo "Do you use a DragonFly as the default camera? (y or n)" - echo -n "Enter : " - read ANS - if ( [ "$ANS" = "y" ] || [ "$ANS" = "Y" ] || [ "$ANS" = "yes" ] || [ "$ANS" = "YES" ]) - then - DRAGON="y" - elif ( [ "$ANS" = "n" ] || [ "$ANS" = "N" ] || [ "$ANS" = "no" ] || [ "$ANS" = "NO" ]) - then - DRAGON="n" - else - echo "Please enter y or n." - exit 0 - fi elif [ "$ANS" = "5" ] then --- 75,78 ---- *************** *** 206,216 **** fi - if [ "$DRAGON" = "y" ] - then - cat >> $SED <<EOF - s/#undef DRAGONFLY/#define DRAGONFLY/ - EOF - fi - if [ "$APPLE_FAST_TEX" = "y" ] then --- 192,195 ---- |