Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25305
Modified Files: Tag: devel_0_37 configure.in configure Log Message: fixed --enable-alsa
Index: configure.in =================================================================== RCS file: /cvsroot/pure-data/pd/src/configure.in,v retrieving revision 1.1.1.4.2.10 retrieving revision 1.1.1.4.2.11 diff -C2 -d -r1.1.1.4.2.10 -r1.1.1.4.2.11 *** configure.in 2 Mar 2004 11:02:19 -0000 1.1.1.4.2.10 --- configure.in 11 Mar 2004 15:50:26 -0000 1.1.1.4.2.11 *************** *** 23,27 ****
AC_ARG_ENABLE(alsa, [ --disable-alsa disable ALSA], ! alsa="no",alsa="yes") AC_ARG_ENABLE(jack, [ --enable-jack jack audio server], jack="yes") --- 23,27 ----
AC_ARG_ENABLE(alsa, [ --disable-alsa disable ALSA], ! alsa=$enableval) AC_ARG_ENABLE(jack, [ --enable-jack jack audio server], jack="yes")
Index: configure =================================================================== RCS file: /cvsroot/pure-data/pd/src/configure,v retrieving revision 1.1.1.4.2.10 retrieving revision 1.1.1.4.2.11 diff -C2 -d -r1.1.1.4.2.10 -r1.1.1.4.2.11 *** configure 2 Mar 2004 11:07:27 -0000 1.1.1.4.2.10 --- configure 11 Mar 2004 15:50:26 -0000 1.1.1.4.2.11 *************** *** 1,39 **** #! /bin/sh - # Guess values for system-dependent variables and create Makefiles. ! # Generated automatically using autoconf version 2.13 ! # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it.
! # Defaults: [...9299 lines suppressed...] ! # Unfortunately, on DOS this fails, as config.log is still kept open ! # by configure, so config.status won't be able to write to it; its ! # output is simply discarded. So we exec the FD to /dev/null, ! # effectively closing config.log, so it can be properly (re)opened and ! # appended to by config.status. When coming back to configure, we ! # need to make the FD available again. ! if test "$no_create" != yes; then ! ac_cs_success=: ! ac_config_status_args= ! test "$silent" = yes && ! ac_config_status_args="$ac_config_status_args --quiet" ! exec 5>/dev/null ! $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false ! exec 5>>config.log ! # Use ||, not &&, to avoid exiting from the if with $? = 1, which ! # would make configure fail if this is the last instruction. ! $ac_cs_success || { (exit 1); exit 1; } ! fi