From: Dominic L?t. <ma...@us...> - 2004-05-30 12:47:59
|
Update of /cvsroot/robotflow/RobotFlow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22425 Modified Files: configure.in Log Message: updated configure to detect Player properly Index: configure.in =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/configure.in,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** configure.in 30 May 2004 12:34:07 -0000 1.34 --- configure.in 30 May 2004 12:47:50 -0000 1.35 *************** *** 114,123 **** dnl test which PLAYER_DIR if test -n "$PLAYER_DIR"; then ! AC_MSG_RESULT(found in $PLAYER_DIR) ! PLAYER_LIBS="-L$PLAYER_DIR/lib -lplayerc -lplayercclient -lplayerclient -lplayerpacket -lplayerqueue" ! PLAYER_INCLUDES="-I$PLAYER_DIR/include" ! AM_CONDITIONAL(WITH_PLAYER,true) else ! AM_CONDITIONAL(WITH_PLAYER,false) fi --- 114,124 ---- dnl test which PLAYER_DIR if test -n "$PLAYER_DIR"; then ! AC_MSG_RESULT(found in $PLAYER_DIR) ! PLAYER_LIBS="-L$PLAYER_DIR/lib -lplayerc -lplayercclient -lplayerclient -lplayerpacket -lplayerqueue" ! PLAYER_INCLUDES="-I$PLAYER_DIR/include" ! PLAYER_FOUND="yes" ! AM_CONDITIONAL(WITH_PLAYER,true) else ! AM_CONDITIONAL(WITH_PLAYER,false) fi *************** *** 150,153 **** --- 151,155 ---- MARIE_FOUND="" + AC_ARG_WITH(ACE, [ --with-MARIE Where MARIE is installed (/usr/local)], MARIE_DIR="$withval";MARIE_BASE=$withval) |