Update of /cvsroot/pure-data/pd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19549
Modified Files: Tag: devel_0_38 configure.ac Log Message: added compile time flags for bigger hash table and atomic stack management
Index: configure.ac =================================================================== RCS file: /cvsroot/pure-data/pd/Attic/configure.ac,v retrieving revision 1.1.4.2 retrieving revision 1.1.4.3 diff -C2 -d -r1.1.4.2 -r1.1.4.3 *** configure.ac 7 Nov 2004 12:38:55 -0000 1.1.4.2 --- configure.ac 3 Jan 2005 10:42:55 -0000 1.1.4.3 *************** *** 131,134 **** --- 131,142 ---- setuid=yes)
+ AC_ARG_ENABLE(atomic, [ --enable-atomic use atomic operations], + AC_DEFINE(ATOMIC) + ) + + AC_ARG_ENABLE(newhash, [ --enable-newhash use 16 bit symbol hash table], + AC_DEFINE(NEWHASH) + ) +
dnl compile features *************** *** 159,163 ****
dnl setuid ! if test $setuid == "yes"; then binarymode="-m4755" fi --- 167,171 ----
dnl setuid ! if test "$setuid" == "yes"; then binarymode="-m4755" fi