Update of /cvsroot/pure-data/externals/gem2pdp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17607
Modified Files: configure configure.ac Log Message: made it search for the sources in the standard Dev layout as well as /usr/local
Index: configure.ac =================================================================== RCS file: /cvsroot/pure-data/externals/gem2pdp/configure.ac,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** configure.ac 12 Apr 2005 16:42:02 -0000 1.3 --- configure.ac 19 Apr 2005 00:52:01 -0000 1.4 *************** *** 3,9 **** AC_INIT GEM2PDP_VERSION=0.6 ! PD_DIR=/usr/local/pd ! PDP_DIR=/usr/local/pd/pdp ! GEM_DIR=/usr/local/pd/gem
AC_ISC_POSIX --- 3,32 ---- AC_INIT GEM2PDP_VERSION=0.6 ! ! if test -f /usr/local/pd; then ! PD_DIR=/usr/local/pd ! elif test -f ../../pd; then ! PD_DIR=../../pd ! elif ! echo "Pd sources not found" ! fi ! ! if test -f /usr/local/pd/pdp; then ! PDP_DIR=/usr/local/pd/pdp ! elif test -f ../pdp; then ! PDP_DIR=../pdp ! elif ! echo "PdP sources not found" ! fi ! ! if test -f /usr/local/pd/gem; then ! GEM_DIR=/usr/local/pd/gem ! elif test -f ../../Gem; then ! GEM_DIR=../../Gem ! elif test -f ../gem/Gem; then ! GEM_DIR=../gem/Gem ! elif ! echo "Gem sources not found" ! fi
AC_ISC_POSIX
Index: configure =================================================================== RCS file: /cvsroot/pure-data/externals/gem2pdp/configure,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** configure 26 Sep 2003 04:27:20 -0000 1.2 --- configure 19 Apr 2005 00:52:00 -0000 1.3 *************** *** 1,5 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.53. # # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 --- 1,5 ---- #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.57. # [...2321 lines suppressed...] ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd` ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd` *************** *** 4062,4067 **** if test "$no_create" != yes; then ac_cs_success=: exec 5>/dev/null ! $SHELL $CONFIG_STATUS || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which --- 4495,4503 ---- 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