Merge pull request #7 from stephanm/versioninfo

Store version information in one place only (configure.in)
This commit is contained in:
Jeff Lawson 2020-02-12 10:59:41 -06:00 committed by GitHub
commit bfba40e566
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -57,7 +57,7 @@ Tclcurl_Init (Tcl_Interp *interp) {
Tclcurl_MultiInit(interp); Tclcurl_MultiInit(interp);
Tcl_PkgProvide(interp,"TclCurl","7.22.0"); Tcl_PkgProvide(interp,"TclCurl",PACKAGE_VERSION);
return TCL_OK; return TCL_OK;
} }

View File

@ -12,8 +12,6 @@
################################################################################ ################################################################################
################################################################################ ################################################################################
package provide TclCurl 7.22.0
namespace eval curl { namespace eval curl {
################################################################################ ################################################################################