From: <jpg...@us...> - 2007-11-08 14:52:37
|
Revision: 1274 http://iaxclient.svn.sourceforge.net/iaxclient/?rev=1274&view=rev Author: jpgrayson Date: 2007-11-08 06:52:32 -0800 (Thu, 08 Nov 2007) Log Message: ----------- When automatically choosing the clients at configure-time, only build stresstest if oggz and theora are available. Modified Paths: -------------- trunk/configure.ac Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2007-11-07 18:00:18 UTC (rev 1273) +++ trunk/configure.ac 2007-11-08 14:52:32 UTC (rev 1274) @@ -385,8 +385,12 @@ # Autodetect clients if test "x$enable_clients" = "xauto"; then - clients="$clients testcall stresstest" + clients="$clients testcall" + if test x$has_oggz = xyes && test x$has_theora = xyes; then + clients="$clients stresstest" + fi + if test ! x$has_wx = xno; then clients="$clients iaxphone" if test "x$has_gdk2" = xyes; then This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |