summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ds9/doc/release/r8.1.html1
-rw-r--r--make.include2
-rwxr-xr-xtkimg/gif/configure.in3
-rw-r--r--tkimg/gif/tkimggifConfig.sh.in26
-rwxr-xr-xtkimg/jpeg/configure.in3
-rw-r--r--tkimg/jpeg/tkimgjpegConfig.sh.in26
-rwxr-xr-xtkimg/png/configure.in3
-rw-r--r--tkimg/png/tkimgpngConfig.sh.in26
-rwxr-xr-xtkimg/tiff/configure.in3
-rw-r--r--tkimg/tiff/tkimgtiffConfig.sh.in26
-rwxr-xr-xtkimg/window/configure.in3
-rw-r--r--tkimg/window/tkimgwindowConfig.sh.in26
12 files changed, 142 insertions, 6 deletions
diff --git a/ds9/doc/release/r8.1.html b/ds9/doc/release/r8.1.html
index fd36856..d3ae4d9 100644
--- a/ds9/doc/release/r8.1.html
+++ b/ds9/doc/release/r8.1.html
@@ -64,6 +64,7 @@
<li><tt>03.07.2019 TKBLT: fix segv Marker Op delete.</tt></li>
<li><tt>03.18.2019 CONTOURS: contours are now threaded.</tt></li>
<li><tt>03.18.2019 CONTOURS: default contour method is now smooth.</tt></li>
+<li><tt>03.19.2019 TKIMG: update to verision 1.4.9.</tt></li>
<li><tt><b>xx.xx.2019 RELEASE version 8.1b1</b></tt></li>
</ol>
</div>
diff --git a/make.include b/make.include
index 8451a4e..a4e78ce 100644
--- a/make.include
+++ b/make.include
@@ -9,7 +9,7 @@
# tkblt 3.2
# tkcon 2.7
# tkhtml1 1.0
-# tkimg 1.4.7
+# tkimg 1.4.9
# tkmpeg 1.0
# tkagif 1.0
# tktable 2.10
diff --git a/tkimg/gif/configure.in b/tkimg/gif/configure.in
index 5067a8f..94b8c36 100755
--- a/tkimg/gif/configure.in
+++ b/tkimg/gif/configure.in
@@ -187,6 +187,7 @@ fi
TEA_PROG_TCLSH
TEA_PROG_WISH
+TEA_EXPORT_CONFIG(tkimggif)
#--------------------------------------------------------------------
# Finally, substitute all of the various values into the Makefile.
@@ -194,6 +195,6 @@ TEA_PROG_WISH
# which require substituting th AC variables in. Include these here.
#--------------------------------------------------------------------
-AC_OUTPUT([Makefile])
+AC_OUTPUT([Makefile tkimggifConfig.sh])
#--------------------------------------------------------------------
diff --git a/tkimg/gif/tkimggifConfig.sh.in b/tkimg/gif/tkimggifConfig.sh.in
new file mode 100644
index 0000000..d774315
--- /dev/null
+++ b/tkimg/gif/tkimggifConfig.sh.in
@@ -0,0 +1,26 @@
+# tkimggifConfig.sh --
+#
+# This shell script (for sh) is generated automatically by tkimggif's
+# configure script. It will create shell variables for most of
+# the configuration options discovered by the configure script.
+# This script is intended to be included by the configure scripts
+# for tkimggif extensions so that they don't have to figure this all
+# out for themselves. This file does not duplicate information
+# already provided by tclConfig.sh, so you may need to use that
+# file in addition to this one.
+#
+# The information in this file is specific to a single platform.
+
+# tkimggif's version number.
+tkimggif_VERSION='@PACKAGE_VERSION@'
+
+# The name of the tkimggif library (may be either a .a file or a shared library):
+tkimggif_LIB_FILE=@PKG_LIB_FILE@
+
+# String to pass to linker to pick up the tkimggif library from its
+# build directory.
+tkimggif_BUILD_LIB_SPEC='@tkimggif_BUILD_LIB_SPEC@'
+
+# String to pass to linker to pick up the tkimggif library from its
+# installed directory.
+tkimggif_LIB_SPEC='@tkimggif_LIB_SPEC@'
diff --git a/tkimg/jpeg/configure.in b/tkimg/jpeg/configure.in
index 4fce411..8b1a9d4 100755
--- a/tkimg/jpeg/configure.in
+++ b/tkimg/jpeg/configure.in
@@ -196,6 +196,7 @@ fi
TEA_PROG_TCLSH
TEA_PROG_WISH
+TEA_EXPORT_CONFIG(tkimgjpeg)
#--------------------------------------------------------------------
# Finally, substitute all of the various values into the Makefile.
@@ -203,6 +204,6 @@ TEA_PROG_WISH
# which require substituting th AC variables in. Include these here.
#--------------------------------------------------------------------
-AC_OUTPUT([Makefile])
+AC_OUTPUT([Makefile tkimgjpegConfig.sh])
#--------------------------------------------------------------------
diff --git a/tkimg/jpeg/tkimgjpegConfig.sh.in b/tkimg/jpeg/tkimgjpegConfig.sh.in
new file mode 100644
index 0000000..8ef0dee
--- /dev/null
+++ b/tkimg/jpeg/tkimgjpegConfig.sh.in
@@ -0,0 +1,26 @@
+# tkimgjpegConfig.sh --
+#
+# This shell script (for sh) is generated automatically by tkimgjpeg's
+# configure script. It will create shell variables for most of
+# the configuration options discovered by the configure script.
+# This script is intended to be included by the configure scripts
+# for tkimgjpeg extensions so that they don't have to figure this all
+# out for themselves. This file does not duplicate information
+# already provided by tclConfig.sh, so you may need to use that
+# file in addition to this one.
+#
+# The information in this file is specific to a single platform.
+
+# tkimgjpeg's version number.
+tkimgjpeg_VERSION='@PACKAGE_VERSION@'
+
+# The name of the tkimgjpeg library (may be either a .a file or a shared library):
+tkimgjpeg_LIB_FILE=@PKG_LIB_FILE@
+
+# String to pass to linker to pick up the tkimgjpeg library from its
+# build directory.
+tkimgjpeg_BUILD_LIB_SPEC='@tkimgjpeg_BUILD_LIB_SPEC@'
+
+# String to pass to linker to pick up the tkimgjpeg library from its
+# installed directory.
+tkimgjpeg_LIB_SPEC='@tkimgjpeg_LIB_SPEC@'
diff --git a/tkimg/png/configure.in b/tkimg/png/configure.in
index b207f30..95829e1 100755
--- a/tkimg/png/configure.in
+++ b/tkimg/png/configure.in
@@ -204,6 +204,7 @@ fi
TEA_PROG_TCLSH
TEA_PROG_WISH
+TEA_EXPORT_CONFIG(tkimgpng)
#--------------------------------------------------------------------
# Finally, substitute all of the various values into the Makefile.
@@ -211,6 +212,6 @@ TEA_PROG_WISH
# which require substituting th AC variables in. Include these here.
#--------------------------------------------------------------------
-AC_OUTPUT([Makefile])
+AC_OUTPUT([Makefile tkimgpngConfig.sh])
#--------------------------------------------------------------------
diff --git a/tkimg/png/tkimgpngConfig.sh.in b/tkimg/png/tkimgpngConfig.sh.in
new file mode 100644
index 0000000..7d62ca7
--- /dev/null
+++ b/tkimg/png/tkimgpngConfig.sh.in
@@ -0,0 +1,26 @@
+# tkimgpngConfig.sh --
+#
+# This shell script (for sh) is generated automatically by tkimgpng's
+# configure script. It will create shell variables for most of
+# the configuration options discovered by the configure script.
+# This script is intended to be included by the configure scripts
+# for tkimgpng extensions so that they don't have to figure this all
+# out for themselves. This file does not duplicate information
+# already provided by tclConfig.sh, so you may need to use that
+# file in addition to this one.
+#
+# The information in this file is specific to a single platform.
+
+# tkimgpng's version number.
+tkimgpng_VERSION='@PACKAGE_VERSION@'
+
+# The name of the tkimgpng library (may be either a .a file or a shared library):
+tkimgpng_LIB_FILE=@PKG_LIB_FILE@
+
+# String to pass to linker to pick up the tkimgpng library from its
+# build directory.
+tkimgpng_BUILD_LIB_SPEC='@tkimgpng_BUILD_LIB_SPEC@'
+
+# String to pass to linker to pick up the tkimgpng library from its
+# installed directory.
+tkimgpng_LIB_SPEC='@tkimgpng_LIB_SPEC@'
diff --git a/tkimg/tiff/configure.in b/tkimg/tiff/configure.in
index eb77411..59f34f5 100755
--- a/tkimg/tiff/configure.in
+++ b/tkimg/tiff/configure.in
@@ -217,6 +217,7 @@ fi
TEA_PROG_TCLSH
TEA_PROG_WISH
+TEA_EXPORT_CONFIG(tkimgtiff)
#--------------------------------------------------------------------
# Finally, substitute all of the various values into the Makefile.
@@ -224,6 +225,6 @@ TEA_PROG_WISH
# which require substituting th AC variables in. Include these here.
#--------------------------------------------------------------------
-AC_OUTPUT([Makefile])
+AC_OUTPUT([Makefile tkimgtiffConfig.sh])
#--------------------------------------------------------------------
diff --git a/tkimg/tiff/tkimgtiffConfig.sh.in b/tkimg/tiff/tkimgtiffConfig.sh.in
new file mode 100644
index 0000000..de85cce
--- /dev/null
+++ b/tkimg/tiff/tkimgtiffConfig.sh.in
@@ -0,0 +1,26 @@
+# tkimgtiffConfig.sh --
+#
+# This shell script (for sh) is generated automatically by tkimgtiff's
+# configure script. It will create shell variables for most of
+# the configuration options discovered by the configure script.
+# This script is intended to be included by the configure scripts
+# for tkimgtiff extensions so that they don't have to figure this all
+# out for themselves. This file does not duplicate information
+# already provided by tclConfig.sh, so you may need to use that
+# file in addition to this one.
+#
+# The information in this file is specific to a single platform.
+
+# tkimgtiff's version number.
+tkimgtiff_VERSION='@PACKAGE_VERSION@'
+
+# The name of the tkimgtiff library (may be either a .a file or a shared library):
+tkimgtiff_LIB_FILE=@PKG_LIB_FILE@
+
+# String to pass to linker to pick up the tkimgtiff library from its
+# build directory.
+tkimgtiff_BUILD_LIB_SPEC='@tkimgtiff_BUILD_LIB_SPEC@'
+
+# String to pass to linker to pick up the tkimgtiff library from its
+# installed directory.
+tkimgtiff_LIB_SPEC='@tkimgtiff_LIB_SPEC@'
diff --git a/tkimg/window/configure.in b/tkimg/window/configure.in
index b120654..d9ca6bd 100755
--- a/tkimg/window/configure.in
+++ b/tkimg/window/configure.in
@@ -197,6 +197,7 @@ fi
TEA_PROG_TCLSH
TEA_PROG_WISH
+TEA_EXPORT_CONFIG(tkimgwindow)
#--------------------------------------------------------------------
# Finally, substitute all of the various values into the Makefile.
@@ -204,6 +205,6 @@ TEA_PROG_WISH
# which require substituting th AC variables in. Include these here.
#--------------------------------------------------------------------
-AC_OUTPUT([Makefile])
+AC_OUTPUT([Makefile tkimgwindowConfig.sh])
#--------------------------------------------------------------------
diff --git a/tkimg/window/tkimgwindowConfig.sh.in b/tkimg/window/tkimgwindowConfig.sh.in
new file mode 100644
index 0000000..b1df3b8
--- /dev/null
+++ b/tkimg/window/tkimgwindowConfig.sh.in
@@ -0,0 +1,26 @@
+# tkimgwindowConfig.sh --
+#
+# This shell script (for sh) is generated automatically by tkimgwindow's
+# configure script. It will create shell variables for most of
+# the configuration options discovered by the configure script.
+# This script is intended to be included by the configure scripts
+# for tkimgwindow extensions so that they don't have to figure this all
+# out for themselves. This file does not duplicate information
+# already provided by tclConfig.sh, so you may need to use that
+# file in addition to this one.
+#
+# The information in this file is specific to a single platform.
+
+# tkimgwindow's version number.
+tkimgwindow_VERSION='@PACKAGE_VERSION@'
+
+# The name of the tkimgwindow library (may be either a .a file or a shared library):
+tkimgwindow_LIB_FILE=@PKG_LIB_FILE@
+
+# String to pass to linker to pick up the tkimgwindow library from its
+# build directory.
+tkimgwindow_BUILD_LIB_SPEC='@tkimgwindow_BUILD_LIB_SPEC@'
+
+# String to pass to linker to pick up the tkimgwindow library from its
+# installed directory.
+tkimgwindow_LIB_SPEC='@tkimgwindow_LIB_SPEC@'