Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15396
Modified Files: Tag: devel_0_39 configure configure.in Log Message: pd doesn't deserve setuid option any more than jMax did: should be reserved to apps that are responsible about the permissions they get.
Index: configure =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/configure,v retrieving revision 1.6.2.7 retrieving revision 1.6.2.8 diff -C2 -d -r1.6.2.7 -r1.6.2.8 *** configure 21 Nov 2006 22:13:13 -0000 1.6.2.7 --- configure 21 Nov 2006 22:14:50 -0000 1.6.2.8 *************** *** 848,852 **** --enable-debug debugging support --enable-static link statically - --enable-setuid install as setuid (linux)
Some influential environment variables: --- 848,851 ---- *************** *** 1358,1366 **** static=$enableval fi; - # Check whether --enable-setuid or --disable-setuid was given. - if test "${enable_setuid+set}" = set; then - enableval="$enable_setuid" - setuid=$enableval - fi;
ac_ext=c --- 1357,1360 ---- *************** *** 6560,6564 **** MORECFLAGS="-DDL_OPEN -DPA_USE_OSS -DPA_LITTLE_ENDIAN -DUNIX -DUNISTD -DUSEAPI_OSS -fno-strict-aliasing" SYSSRC=$SYSSRC" s_midi_oss.c s_audio_oss.c" - if test x$setuid == "xyes"; then binarymode="-m4755"; fi STRIPFLAG=-s OSNUMBER=0 --- 6554,6557 ----
Index: configure.in =================================================================== RCS file: /cvsroot/pure-data/pd/src/configure.in,v retrieving revision 1.5.4.5.2.9 retrieving revision 1.5.4.5.2.10 diff -C2 -d -r1.5.4.5.2.9 -r1.5.4.5.2.10 *** configure.in 21 Nov 2006 22:13:13 -0000 1.5.4.5.2.9 --- configure.in 21 Nov 2006 22:14:50 -0000 1.5.4.5.2.10 *************** *** 36,40 **** AC_ARG_ENABLE(debug, [ --enable-debug debugging support], USE_DEBUG_CFLAGS=$enableval) AC_ARG_ENABLE(static, [ --enable-static link statically], static=$enableval) - AC_ARG_ENABLE(setuid, [ --enable-setuid install as setuid (linux)], setuid=$enableval)
dnl Checks for programs. --- 36,39 ---- *************** *** 127,131 **** MORECFLAGS="-DDL_OPEN -DPA_USE_OSS -DPA_LITTLE_ENDIAN -DUNIX -DUNISTD -DUSEAPI_OSS -fno-strict-aliasing" SYSSRC=$SYSSRC" s_midi_oss.c s_audio_oss.c" - if test x$setuid == "xyes"; then binarymode="-m4755"; fi STRIPFLAG=-s OSNUMBER=0 --- 126,129 ----