[PD-dev] [ pure-data-Patches-3079451 ] check for Tcl/Tk 8.6 properly

SourceForge.net noreply at sourceforge.net
Fri Oct 1 16:06:13 CEST 2010


Patches item #3079451, was opened at 2010-10-01 14:06
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3079451&group_id=55736

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: check for Tcl/Tk 8.6 properly

Initial Comment:
Index: configure.in
===================================================================
--- configure.in	(révision 14147)
+++ configure.in	(copie de travail)
@@ -149,25 +149,20 @@
 #    exit -1
 fi
 
-AC_CHECK_LIB(tcl85, main,,
-        AC_CHECK_LIB(tcl8.5, main,,
-        AC_CHECK_LIB(tcl84, 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(tcl8.6, main,, AC_CHECK_LIB(tcl86, main,,
+AC_CHECK_LIB(tcl8.5, main,, AC_CHECK_LIB(tcl85, main,,
+AC_CHECK_LIB(tcl8.4, main,, AC_CHECK_LIB(tcl84, main,,
+AC_CHECK_LIB(tcl8.3, main,,
+AC_CHECK_LIB(tcl8.2, main,,
+        echo no tcl library found; exit 1))))))))
 
-AC_CHECK_LIB(tk85, main,,
-        AC_CHECK_LIB(tk8.5, main,,
-       AC_CHECK_LIB(tk84, 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)))))))
+AC_CHECK_LIB(tk8.6, main,, AC_CHECK_LIB(tk86, main,,
+AC_CHECK_LIB(tk8.5, main,, AC_CHECK_LIB(tk85, main,,
+AC_CHECK_LIB(tk8.4, main,, AC_CHECK_LIB(tk84, main,,
+AC_CHECK_LIB(tk8.3, main,,
+AC_CHECK_LIB(tk8.2, main,,
+	echo no tk library found; exit 1))))))))
 
-
 if test x$tk != "xno"; then
 GUISRC="t_main.c t_tkcmd.c"
 else


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3079451&group_id=55736



More information about the Pd-dev mailing list