Patches item #3079451, was opened at 2010-10-01 16:06 Message generated for change (Comment added) made by zmoelnig You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3079451...
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: Pending Resolution: Out of Date
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
----------------------------------------------------------------------
Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2010-10-01 22:02
Message: the upcoming Pd-0.43 and all releases thereafter will not have this configure check anymore, since it will ship with a self contained tcl/tk script, rendering this patch obsolete.
----------------------------------------------------------------------
You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3079451...