This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients Joe.Borg, ned.deily
Date 2014-06-30.18:23:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404152629.65.0.5834375437.issue21887@psf.upfronthosting.co.za>
In-reply-to
Content
for the --with-tcltk-includes and -libs options, you need to pass the same cc options that would go on CFLAGS and LDFLAGS.

  ./configure --help
  [...]
  --with-tcltk-includes='-I...'
                          override search for Tcl and Tk include files
  --with-tcltk-libs='-L...'
                          override search for Tcl and Tk libs

So your values should likely look something like:

  --with-tcltk-includes="-I/scratch/root/include"
  --with-tcltk-libs="-L/scratch/root/lib -ltcl8.6 -ltk8.6"
History
Date User Action Args
2014-06-30 18:23:49ned.deilysetrecipients: + ned.deily, Joe.Borg
2014-06-30 18:23:49ned.deilysetmessageid: <1404152629.65.0.5834375437.issue21887@psf.upfronthosting.co.za>
2014-06-30 18:23:49ned.deilylinkissue21887 messages
2014-06-30 18:23:49ned.deilycreate