From: Dominic L?t. <ma...@us...> - 2004-05-31 12:53:37
|
Update of /cvsroot/robotflow/RobotFlow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27114 Modified Files: configure.in Log Message: detecting player in prefix Index: configure.in =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/configure.in,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** configure.in 31 May 2004 12:31:41 -0000 1.37 --- configure.in 31 May 2004 12:53:27 -0000 1.38 *************** *** 114,118 **** 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" --- 114,118 ---- 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" *************** *** 120,124 **** AM_CONDITIONAL(WITH_PLAYER,true) else ! AM_CONDITIONAL(WITH_PLAYER,false) fi --- 120,133 ---- AM_CONDITIONAL(WITH_PLAYER,true) else ! dnl test for player with prefix ! if test -e "$prefix/bin/player"; then ! AC_MSG_RESULT("found in $prefix") ! PLAYER_LIBS="-L$/lib prefix -lplayerc -lplayercclient -lplayerclient -lplayerpacket -lplayerqueue" ! PLAYER_INCLUDES="-I$prefix/include" ! PLAYER_FOUND="yes" ! AM_CONDITIONAL(WITH_PLAYER,true) ! else ! AM_CONDITIONAL(WITH_PLAYER,false) ! fi fi |