[PD-cvs] scripts/auto-build pd-devel-auto-builder.sh, 1.4, 1.5 pd-extended-auto-builder.sh, 1.10, 1.11 pd-main-auto-builder.sh, 1.9, 1.10

Hans-Christoph Steiner eighthave at users.sourceforge.net
Thu Oct 19 02:55:50 CEST 2006


Update of /cvsroot/pure-data/scripts/auto-build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3424

Modified Files:
	pd-devel-auto-builder.sh pd-extended-auto-builder.sh 
	pd-main-auto-builder.sh 
Log Message:
the uname -s is now downcased in auto-build-common, so I adjusted the case statement accordingly

Index: pd-main-auto-builder.sh
===================================================================
RCS file: /cvsroot/pure-data/scripts/auto-build/pd-main-auto-builder.sh,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** pd-main-auto-builder.sh	18 Oct 2006 15:42:12 -0000	1.9
--- pd-main-auto-builder.sh	19 Oct 2006 00:55:48 -0000	1.10
***************
*** 9,25 ****
  
  case $SYSTEM in 
! 	 Linux)
  		  configure_options="--enable-alsa --enable-jack"
  		  platform_name=`uname -m`
  		  ;;
! 	 Darwin)
  		  configure_options=""
  		  platform_name=`uname -p`
  		  ;;
! 	 MINGW*)
  		  configure_options=""
  		  platform_name=i386
  		  ;;
! 	 CYGWIN*)
  		  configure_options=""
  		  platform_name=i386
--- 9,25 ----
  
  case $SYSTEM in 
! 	 linux)
  		  configure_options="--enable-alsa --enable-jack"
  		  platform_name=`uname -m`
  		  ;;
! 	 darwin)
  		  configure_options=""
  		  platform_name=`uname -p`
  		  ;;
! 	 mingw*)
  		  configure_options=""
  		  platform_name=i386
  		  ;;
! 	 cygwin*)
  		  configure_options=""
  		  platform_name=i386

Index: pd-devel-auto-builder.sh
===================================================================
RCS file: /cvsroot/pure-data/scripts/auto-build/pd-devel-auto-builder.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** pd-devel-auto-builder.sh	18 Oct 2006 15:42:12 -0000	1.4
--- pd-devel-auto-builder.sh	19 Oct 2006 00:55:48 -0000	1.5
***************
*** 9,22 ****
  
  case $SYSTEM in 
! 	 Linux)
  		  echo "Configuring for GNU/Linux"
  		  ;;
! 	 Darwin)
  		  echo "Configuring for Darwin/Mac OS X"
  		  ;;
! 	 MINGW*)
  		  echo "Configuring for MinGW/Windows"
  		  ;;
! 	 CYGWIN*)
  		  echo "Configuring for Cygwin/Windows"
  		  ;;
--- 9,22 ----
  
  case $SYSTEM in 
! 	 linux)
  		  echo "Configuring for GNU/Linux"
  		  ;;
! 	 darwin)
  		  echo "Configuring for Darwin/Mac OS X"
  		  ;;
! 	 mingw*)
  		  echo "Configuring for MinGW/Windows"
  		  ;;
! 	 cygwin*)
  		  echo "Configuring for Cygwin/Windows"
  		  ;;

Index: pd-extended-auto-builder.sh
===================================================================
RCS file: /cvsroot/pure-data/scripts/auto-build/pd-extended-auto-builder.sh,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** pd-extended-auto-builder.sh	18 Oct 2006 15:42:12 -0000	1.10
--- pd-extended-auto-builder.sh	19 Oct 2006 00:55:48 -0000	1.11
***************
*** 11,27 ****
  BUILD_DIR=.
  case $SYSTEM in 
! 	 Linux)
  		  BUILD_DIR=linux_make
  		  echo "Configuring to use $BUILD_DIR on GNU/Linux"
  		  ;;
! 	 Darwin)
  		  BUILD_DIR=darwin_app
  		  echo "Configuring to use $BUILD_DIR on Darwin/Mac OS X"
  		  ;;
! 	 MINGW*)
  		  BUILD_DIR=win32_inno
  		  echo "Configuring to use $BUILD_DIR on MinGW/Windows"
  		  ;;
! 	 CYGWIN*)
  		  BUILD_DIR=win32_inno
  		  echo "Configuring to use $BUILD_DIR on Cygwin/Windows"
--- 11,27 ----
  BUILD_DIR=.
  case $SYSTEM in 
! 	 linux)
  		  BUILD_DIR=linux_make
  		  echo "Configuring to use $BUILD_DIR on GNU/Linux"
  		  ;;
! 	 darwin)
  		  BUILD_DIR=darwin_app
  		  echo "Configuring to use $BUILD_DIR on Darwin/Mac OS X"
  		  ;;
! 	 mingw*)
  		  BUILD_DIR=win32_inno
  		  echo "Configuring to use $BUILD_DIR on MinGW/Windows"
  		  ;;
! 	 cygwin*)
  		  BUILD_DIR=win32_inno
  		  echo "Configuring to use $BUILD_DIR on Cygwin/Windows"
***************
*** 65,78 ****
  
  case $SYSTEM in 
! 	 Linux)
  		  upload_build linux_make build tar.bz2
  		  ;;
! 	 Darwin)
  		  upload_build darwin_app . dmg
  		  ;;
! 	 MINGW*)
  		  upload_build win32_inno Output exe
  		  ;;
! 	 CYGWIN*)
  		  upload_build win32_inno Output exe
  		  ;;
--- 65,78 ----
  
  case $SYSTEM in 
! 	 linux)
  		  upload_build linux_make build tar.bz2
  		  ;;
! 	 darwin)
  		  upload_build darwin_app . dmg
  		  ;;
! 	 mingw*)
  		  upload_build win32_inno Output exe
  		  ;;
! 	 cygwin*)
  		  upload_build win32_inno Output exe
  		  ;;





More information about the Pd-cvs mailing list