summaryrefslogtreecommitdiffstats
path: root/ds9/macos/ds9.C
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2019-02-15 22:06:18 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2019-02-15 22:06:18 (GMT)
commit4117168e0b406edb606b6ddb4fdb6640786c9479 (patch)
treef53c119b109450393d754ab7874ef96bcf25be46 /ds9/macos/ds9.C
parent89aa9972e381c2853ff075e592e03cacc4a4e663 (diff)
downloadblt-4117168e0b406edb606b6ddb4fdb6640786c9479.zip
blt-4117168e0b406edb606b6ddb4fdb6640786c9479.tar.gz
blt-4117168e0b406edb606b6ddb4fdb6640786c9479.tar.bz2
support animated gif
Diffstat (limited to 'ds9/macos/ds9.C')
-rw-r--r--ds9/macos/ds9.C7
1 files changed, 7 insertions, 0 deletions
diff --git a/ds9/macos/ds9.C b/ds9/macos/ds9.C
index f5d21b8..554478b 100644
--- a/ds9/macos/ds9.C
+++ b/ds9/macos/ds9.C
@@ -24,6 +24,7 @@ extern "C" {
int Tksao_Init(Tcl_Interp*);
int Tkhtml1_Init(Tcl_Interp*);
int Tkmpeg_Init(Tcl_Interp*);
+ int Tkagif_Init(Tcl_Interp*);
int Tkimg_Init(Tcl_Interp*);
int Zlibtcl_Init(Tcl_Interp*);
@@ -143,6 +144,12 @@ int SAOAppInit(Tcl_Interp *interp)
Tcl_StaticPackage (interp, "tkmpeg", Tkmpeg_Init,
(Tcl_PackageInitProc*)NULL);
+ // Tkagif
+ if (Tkagif_Init(interp) == TCL_ERROR)
+ return TCL_ERROR;
+ Tcl_StaticPackage (interp, "tkagif", Tkagif_Init,
+ (Tcl_PackageInitProc*)NULL);
+
// Tclxml
if (Tclxml_Init(interp) == TCL_ERROR)
return TCL_ERROR;