-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ok I think I figured out the itcl failure
(hopefully...?) Change-Id: Ie8738b3c8a09d644db496880b45e1bdc4a993b9b
- Loading branch information
1 parent
d896d1f
commit 4fb5592
Showing
7 changed files
with
64 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
# Guess values for system-dependent variables and create Makefiles. | ||
# Generated by GNU Autoconf 2.72 for itcl 3.2.1. | ||
# | ||
# Report bugs to <[email protected]>. | ||
# | ||
# | ||
# Copyright (C) 1992-1996, 1998-2017, 2020-2023 Free Software Foundation, | ||
# Inc. | ||
|
@@ -267,10 +269,11 @@ then : | |
printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should" | ||
printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later." | ||
else | ||
printf "%s\n" "$0: Please tell [email protected] about your system, | ||
$0: including any error possibly output before this | ||
$0: message. Then install a modern shell, or manually run | ||
$0: the script under such a shell if you do have one." | ||
printf "%s\n" "$0: Please tell [email protected] and [email protected] | ||
$0: about your system, including any error possibly output | ||
$0: before this message. Then install a modern shell, or | ||
$0: manually run the script under such a shell if you do | ||
$0: have one." | ||
fi | ||
exit 1 | ||
fi ;; | ||
|
@@ -602,7 +605,7 @@ PACKAGE_NAME='itcl' | |
PACKAGE_TARNAME='itcl' | ||
PACKAGE_VERSION='3.2.1' | ||
PACKAGE_STRING='itcl 3.2.1' | ||
PACKAGE_BUGREPORT='' | ||
PACKAGE_BUGREPORT='[email protected]' | ||
PACKAGE_URL='' | ||
|
||
ac_unique_file="generic/itcl.h" | ||
|
@@ -1423,7 +1426,7 @@ Some influential environment variables: | |
Use these variables to override the choices made by 'configure' or to help | ||
it to find libraries and programs with nonstandard names/locations. | ||
Report bugs to the package provider. | ||
Report bugs to <[email protected]>. | ||
_ACEOF | ||
ac_status=$? | ||
fi | ||
|
@@ -2572,9 +2575,22 @@ NODOT_VERSION=${MAJOR_VERSION}${MINOR_VERSION} | |
# encode the package version directly into the source files. | ||
#-------------------------------------------------------------------- | ||
|
||
eval printf "%s\n" "#define VERSION \"${VERSION}\"" >>confdefs.h | ||
if test -r confdefs.h && test -n "${VERSION}" && test -w /dev/stdout; then | ||
if test "x${V}" != "x" && test "${V}" -ge 1; then | ||
test -n "${V}" && test -s confdefs.h && cat confdefs.h && echo "${VERSION}" | ||
fi | ||
fi | ||
|
||
eval | ||
printf "%s\n" "#define VERSION \"${VERSION}\"" >>confdefs.h | ||
|
||
|
||
if test -r confdefs.h && test -n "${VERSION}" && test -w /dev/stdout; then | ||
if test "x${V}" != "x" && test "${V}" -ge 1; then | ||
test -n "${V}" && test -s confdefs.h && cat confdefs.h && echo "${VERSION}" | ||
fi | ||
fi | ||
|
||
#------------------------------------------------------------------------ | ||
# Handle the --prefix=... option | ||
#------------------------------------------------------------------------ | ||
|
@@ -2595,7 +2611,7 @@ fi | |
#-------------------------------------------------------------------- | ||
|
||
# CYGNUS LOCAL | ||
|
||
## just in case we need some extra debugging output: | ||
if test "x${CC}" != "x"; then | ||
test -n "${CC}" && echo "CC is currently set to '${CC}' for `pwd`" | ||
fi | ||
|
@@ -5984,7 +6000,7 @@ Usage: $0 [OPTION]... [TAG]... | |
Configuration files: | ||
$config_files | ||
Report bugs to the package provider." | ||
Report bugs to <[email protected]>." | ||
_ACEOF | ||
ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,12 +12,12 @@ sinclude(acinclude.m4) | |
# find the sources. The arguments to AC_INIT should be as found in the | ||
# configure.scan generated by autoscan: | ||
# | ||
# AC_INIT([FULL-PACKAGE-NAME],[VERSION],[BUG-REPORT-ADDRESS]) | ||
# AC_CONFIG_SRCDIR([../generic/tcl.h]) | ||
dnl# AC_INIT([FULL-PACKAGE-NAME],[VERSION],[BUG-REPORT-ADDRESS]) | ||
dnl# AC_CONFIG_SRCDIR([../generic/tcl.h]) | ||
#-------------------------------------------------------------------- | ||
|
||
AC_PREREQ([2.61]) | ||
AC_INIT([itcl],[3.2.1],[]) | ||
AC_INIT([itcl],[3.2.1],[[email protected]]) | ||
AC_CONFIG_SRCDIR([generic/itcl.h]) | ||
# CYGNUS LOCAL | ||
AC_CONFIG_AUX_DIR([../..]) | ||
|
@@ -50,7 +50,19 @@ AC_SUBST([VERSION])dnl | |
# encode the package version directly into the source files. | ||
#-------------------------------------------------------------------- | ||
|
||
eval AC_DEFINE_UNQUOTED(VERSION, "${VERSION}") | ||
if test -r confdefs.h && test -n "${VERSION}" && test -w /dev/stdout; then | ||
if test "x${V}" != "x" && test "${V}" -ge 1; then | ||
test -n "${V}" && test -s confdefs.h && cat confdefs.h && echo "${VERSION}" | ||
fi | ||
fi | ||
|
||
eval AC_DEFINE_UNQUOTED([VERSION],["${VERSION}"],[Version]) | ||
|
||
if test -r confdefs.h && test -n "${VERSION}" && test -w /dev/stdout; then | ||
if test "x${V}" != "x" && test "${V}" -ge 1; then | ||
test -n "${V}" && test -s confdefs.h && cat confdefs.h && echo "${VERSION}" | ||
fi | ||
fi | ||
|
||
#------------------------------------------------------------------------ | ||
# Handle the --prefix=... option | ||
|
@@ -75,7 +87,7 @@ fi | |
m4_ifdef([SC_ENABLE_GCC],[ | ||
echo "using special GCC detection macro..." | ||
SC_ENABLE_GCC | ||
],[ | ||
],[ ## just in case we need some extra debugging output: | ||
if test "x${CC}" != "x"; then | ||
test -n "${CC}" && echo "CC is currently set to '${CC}' for `pwd`" | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
# Guess values for system-dependent variables and create Makefiles. | ||
# Generated by GNU Autoconf 2.72 for itk 3.2.1. | ||
# | ||
# Report bugs to <[email protected]>. | ||
# | ||
# | ||
# Copyright (C) 1992-1996, 1998-2017, 2020-2023 Free Software Foundation, | ||
# Inc. | ||
|
@@ -267,10 +269,11 @@ then : | |
printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should" | ||
printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later." | ||
else | ||
printf "%s\n" "$0: Please tell [email protected] about your system, | ||
$0: including any error possibly output before this | ||
$0: message. Then install a modern shell, or manually run | ||
$0: the script under such a shell if you do have one." | ||
printf "%s\n" "$0: Please tell [email protected] and | ||
$0: [email protected] about your system, including any | ||
$0: error possibly output before this message. Then install | ||
$0: a modern shell, or manually run the script under such a | ||
$0: shell if you do have one." | ||
fi | ||
exit 1 | ||
fi ;; | ||
|
@@ -602,7 +605,7 @@ PACKAGE_NAME='itk' | |
PACKAGE_TARNAME='itk' | ||
PACKAGE_VERSION='3.2.1' | ||
PACKAGE_STRING='itk 3.2.1' | ||
PACKAGE_BUGREPORT='' | ||
PACKAGE_BUGREPORT='[email protected]' | ||
PACKAGE_URL='' | ||
|
||
ac_unique_file="generic/itk.h" | ||
|
@@ -1415,7 +1418,7 @@ Some influential environment variables: | |
Use these variables to override the choices made by 'configure' or to help | ||
it to find libraries and programs with nonstandard names/locations. | ||
Report bugs to the package provider. | ||
Report bugs to <[email protected]>. | ||
_ACEOF | ||
ac_status=$? | ||
fi | ||
|
@@ -2396,7 +2399,8 @@ NODOT_VERSION=${MAJOR_VERSION}${MINOR_VERSION} | |
# encode the package version directly into the source files. | ||
#-------------------------------------------------------------------- | ||
|
||
eval printf "%s\n" "#define VERSION \"${VERSION}\"" >>confdefs.h | ||
eval | ||
printf "%s\n" "#define VERSION \"${VERSION}\"" >>confdefs.h | ||
|
||
|
||
#------------------------------------------------------------------------ | ||
|
@@ -5936,7 +5940,7 @@ Usage: $0 [OPTION]... [TAG]... | |
Configuration files: | ||
$config_files | ||
Report bugs to the package provider." | ||
Report bugs to <[email protected]>." | ||
_ACEOF | ||
ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,12 +11,12 @@ sinclude(acinclude.m4) | |
# find the sources. The arguments to AC_INIT should be as found in the | ||
# configure.scan generated by autoscan: | ||
# | ||
# AC_INIT([FULL-PACKAGE-NAME],[VERSION],[BUG-REPORT-ADDRESS]) | ||
# AC_CONFIG_SRCDIR([../generic/tcl.h]) | ||
dnl# AC_INIT([FULL-PACKAGE-NAME],[VERSION],[BUG-REPORT-ADDRESS]) | ||
dnl# AC_CONFIG_SRCDIR([../generic/tcl.h]) | ||
#-------------------------------------------------------------------- | ||
|
||
AC_PREREQ([2.61]) | ||
AC_INIT([itk],[3.2.1],[]) | ||
AC_INIT([itk],[3.2.1],[[email protected]]) | ||
AC_CONFIG_SRCDIR([generic/itk.h]) | ||
# CYGNUS LOCAL | ||
AC_CONFIG_AUX_DIR([../..]) | ||
|
@@ -48,7 +48,7 @@ AC_SUBST([VERSION])dnl | |
# encode the package version directly into the source files. | ||
#-------------------------------------------------------------------- | ||
|
||
eval AC_DEFINE_UNQUOTED(VERSION, "${VERSION}") | ||
eval AC_DEFINE_UNQUOTED([VERSION],["${VERSION}"],[Version]) | ||
|
||
#------------------------------------------------------------------------ | ||
# Handle the --prefix=... option | ||
|