Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22548
Modified Files: Tag: devel_0_37 configure.in configure Log Message: t_garray thread locks
Index: configure =================================================================== RCS file: /cvsroot/pure-data/pd/src/configure,v retrieving revision 1.1.1.4.2.15 retrieving revision 1.1.1.4.2.16 diff -C2 -d -r1.1.1.4.2.15 -r1.1.1.4.2.16 *** configure 10 May 2004 18:15:56 -0000 1.1.1.4.2.15 --- configure 23 May 2004 18:57:37 -0000 1.1.1.4.2.16 *************** *** 33,36 **** --- 33,38 ---- --enable-threadedsf use threaded soundfiler (EXPERIMENTAL)" ac_help="$ac_help + --enable-gathreadlocks t_garray threadlocks (EXPERIMENTAL)" + ac_help="$ac_help --with-x use the X Window System"
*************** *** 630,633 **** --- 632,641 ---- [...1556 lines suppressed...] ! if { (eval echo configure:2740: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" --- 2745,2749 ---- ; return 0; } EOF ! if { (eval echo configure:2748: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" *************** *** 2804,2807 **** --- 2812,2819 ---- fi
+ if test "$threadedsf" == "yes"; + then + MORECFLAGS=$MORECFLAGS" -DGARRAY_THREAD_LOCK" + fi
if test x$alsa == "xyes";
Index: configure.in =================================================================== RCS file: /cvsroot/pure-data/pd/src/configure.in,v retrieving revision 1.1.1.4.2.15 retrieving revision 1.1.1.4.2.16 diff -C2 -d -r1.1.1.4.2.15 -r1.1.1.4.2.16 *** configure.in 10 May 2004 18:14:23 -0000 1.1.1.4.2.15 --- configure.in 23 May 2004 18:57:37 -0000 1.1.1.4.2.16 *************** *** 39,42 **** --- 39,43 ---- AC_ARG_ENABLE(threadedgui, [ --enable-threadedgui use yves degoyon's threaded gui patch],threadedgui=$enableval) AC_ARG_ENABLE(threadedsf, [ --enable-threadedsf use threaded soundfiler (EXPERIMENTAL)],threadedsf=$enableval) + AC_ARG_ENABLE(gathreadlocks, [ --enable-gathreadlocks t_garray threadlocks (EXPERIMENTAL)],gathreadlocks=$enableval)
dnl Checks for programs. *************** *** 192,195 **** --- 193,200 ---- fi
+ if test "$threadedsf" == "yes"; + then + MORECFLAGS=$MORECFLAGS" -DGARRAY_THREAD_LOCK" + fi
if test x$alsa == "xyes";