Skip to content

Commit

Permalink
fix for #9: test of python module 'tkinter'
Browse files Browse the repository at this point in the history
  • Loading branch information
McArcady authored and McArcady committed Mar 27, 2020
1 parent dd51e90 commit 10c9d5f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
30 changes: 15 additions & 15 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for lnp-forge 26c2423-dirty.
# Generated by GNU Autoconf 2.69 for lnp-forge eb24091-dirty.
#
# Report bugs to <[email protected]>.
#
Expand Down Expand Up @@ -580,8 +580,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='lnp-forge'
PACKAGE_TARNAME='lnp-forge'
PACKAGE_VERSION='26c2423-dirty'
PACKAGE_STRING='lnp-forge 26c2423-dirty'
PACKAGE_VERSION='eb24091-dirty'
PACKAGE_STRING='lnp-forge eb24091-dirty'
PACKAGE_BUGREPORT='[email protected]'
PACKAGE_URL=''

Expand Down Expand Up @@ -1308,7 +1308,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures lnp-forge 26c2423-dirty to adapt to many kinds of systems.
\`configure' configures lnp-forge eb24091-dirty to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1379,7 +1379,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of lnp-forge 26c2423-dirty:";;
short | recursive ) echo "Configuration of lnp-forge eb24091-dirty:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1479,7 +1479,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
lnp-forge configure 26c2423-dirty
lnp-forge configure eb24091-dirty
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1948,7 +1948,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by lnp-forge $as_me 26c2423-dirty, which was
It was created by lnp-forge $as_me eb24091-dirty, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -5659,22 +5659,22 @@ fi
PYTHON="python"
fi
PYTHON_NAME=`basename $PYTHON`
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $PYTHON_NAME module: Tkinter" >&5
$as_echo_n "checking $PYTHON_NAME module: Tkinter... " >&6; }
$PYTHON -c "import Tkinter" 2>/dev/null
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $PYTHON_NAME module: tk" >&5
$as_echo_n "checking $PYTHON_NAME module: tk... " >&6; }
$PYTHON -c "import tk" 2>/dev/null
if test $? -eq 0;
then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
eval HAVE_PYMOD_TKINTER=yes
eval HAVE_PYMOD_TK=yes
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
eval HAVE_PYMOD_TKINTER=no
eval HAVE_PYMOD_TK=no
#
if test -n "fatal"
then
as_fn_error $? "failed to find required module Tkinter" "$LINENO" 5
as_fn_error $? "failed to find required module tk" "$LINENO" 5
exit 1
fi
fi
Expand Down Expand Up @@ -7683,7 +7683,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by lnp-forge $as_me 26c2423-dirty, which was
This file was extended by lnp-forge $as_me eb24091-dirty, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -7736,7 +7736,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
lnp-forge config.status 26c2423-dirty
lnp-forge config.status eb24091-dirty
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ AC_PATH_PROG([PYTHON],[python])
if test -z "$PYTHON"; then
AC_MSG_ERROR([Python not found])
fi
AC_PYTHON_MODULE([Tkinter], fatal)
AC_PYTHON_MODULE([tk], fatal)

#----------------------------------------
# Check for Java >= 8
Expand Down

0 comments on commit 10c9d5f

Please sign in to comment.