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: Open 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-05 10:44
Message: there are 2 independent configure scripts; the one in src/ is legacy and includes obsolete checks for tcl (and is still used by miller). the new one is directly in /pd/ and does not include checks.
the old configure-system (that does the checks) has never been used to build on w32. instead makefile.nt (miller) and makefile.mingw (pdx) have been used,
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody) Date: 2010-10-04 21:00
Message: i have Pd-0.43-0test2, it STILL contains this check in configure.in... and makefile.in still assigns @LIBS@ to GLIB, and $(GLIB) is still used in making pdtcl.dll. (why?)
----------------------------------------------------------------------
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...