[PD-cvs] pd configure.ac,1.1.4.3,1.1.4.4

Tim Blechmann timblech at users.sourceforge.net
Thu Jan 20 17:27:27 CET 2005


Update of /cvsroot/pure-data/pd
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20419

Modified Files:
      Tag: devel_0_38
	configure.ac 
Log Message:
changed tcl/tk part to old script

Index: configure.ac
===================================================================
RCS file: /cvsroot/pure-data/pd/Attic/configure.ac,v
retrieving revision 1.1.4.3
retrieving revision 1.1.4.4
diff -C2 -d -r1.1.4.3 -r1.1.4.4
*** configure.ac	3 Jan 2005 10:42:55 -0000	1.1.4.3
--- configure.ac	20 Jan 2005 16:27:24 -0000	1.1.4.4
***************
*** 55,75 ****
  	echo "no X11 found" || exit 1, -L$x_libraries)
  
! AC_CHECK_LIB(tcl8.7, main,,
!     AC_CHECK_LIB(tcl8.6, main,,
! 		AC_CHECK_LIB(tcl8.5, main,,
! 	    	AC_CHECK_LIB(tcl8.4, main,,
! 				AC_CHECK_LIB(tcl8.3, main,,
! 				    AC_CHECK_LIB(tcl8.2, main,,
!         				AC_CHECK_LIB(tcl8.0, main,,
! 							echo no tcl library found || exit 1)))))))
  
! AC_CHECK_LIB(tk8.7, main,,
!     AC_CHECK_LIB(tk8.6, main,,
! 		AC_CHECK_LIB(tk8.5, main,,
! 	    	AC_CHECK_LIB(tk8.4, main,,
! 				AC_CHECK_LIB(tk8.3, main,,
! 				    AC_CHECK_LIB(tk8.2, main,,
!         				AC_CHECK_LIB(tk8.0, main,,
! 							echo no tk library found || exit 1)))))))
  
  
--- 55,74 ----
  	echo "no X11 found" || exit 1, -L$x_libraries)
  
! dnl look for tcl 8.x...
  
! tcllib=""
! 
! AC_CHECK_LIB(tcl8.7, main,tcllib=tcl8.7,
!     AC_CHECK_LIB(tcl8.6, main,tcllib=tcl8.6,
! 	AC_CHECK_LIB(tcl8.5, main,tcllib=tcl8.5,
! 	    AC_CHECK_LIB(tcl8.4, main,tcllib=tcl8.4,
! 		AC_CHECK_LIB(tcl8.3, main,tcllib=tcl8.3,
! 		    AC_CHECK_LIB(tcl8.2, main,tcllib=tcl8.2,
!         		AC_CHECK_LIB(tcl8.0, main,tcllib=tcl8.0,echo no tcl library found || exit 1)))))))
! 
! LIBS="$LIBS -l$tcllib"
! tklib=${tcllib/tcl/tk}
! 
! AC_CHECK_LIB($tklib, main,,echo no tk library found || exit 1)
  
  





More information about the Pd-cvs mailing list