[artoolkit-commits] artoolkit Configure,1.8,1.9
Optical marker tracking and overlay for augmented reality.
Brought to you by:
philip_lamb
From: Hartmut S. <ret...@us...> - 2006-09-18 04:49:05
|
Update of /cvsroot/artoolkit/artoolkit In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv28053 Modified Files: Configure Log Message: implemented (read as: copied code) Waynes proposed ARTOOLKIT_CONFIG for GStreamer. Removed all GStreamer related example configuration strings from the examples and utils. Added section into the documentation Index: Configure =================================================================== RCS file: /cvsroot/artoolkit/artoolkit/Configure,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Configure 15 Sep 2006 03:08:17 -0000 1.8 --- Configure 18 Sep 2006 04:48:30 -0000 1.9 *************** *** 91,94 **** --- 91,107 ---- exit 0 fi + echo "Do you want to create debug symbols? (y or n)" + echo -n "Enter : " + read ANS + if [ "$ANS" = "y" ] + then + CFLAG="$CFLAG -g" + elif [ "$ANS" = "n" ] + then + CFLAG="$CFLAG" + else + echo "Please enter y or n." + exit 0 + fi elif [ "$E" = "IRIX" ] then *************** *** 116,120 **** LIBS="-framework Carbon -framework QuickTime -framework GLUT -framework OpenGL -framework AppKit -framework Foundation -lobjc" ! echo "Dose your Mac have fast texture mapping hardware? (y or n)" echo -n "Enter : " read ANS --- 129,133 ---- LIBS="-framework Carbon -framework QuickTime -framework GLUT -framework OpenGL -framework AppKit -framework Foundation -lobjc" ! echo "Does your Mac have fast texture mapping hardware? (y or n)" echo -n "Enter : " read ANS |