Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix bug [2ca1f6da0dca4a33d57720a2eb9bb0992415819e|2ca1f6da0d]: Windows compilation in pkgs fails when using msys/configure. Rename configure.in -> configure.ac |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
86a892a16a972ae6ac251de960e6ec7e |
User & Date: | jan.nijtmans 2015-04-21 15:08:24.303 |
Context
2015-05-08
| ||
14:17 | repair check-in: 8e963150b5 user: dgp tags: trunk | |
2015-04-21
| ||
15:08 | Fix bug [2ca1f6da0dca4a33d57720a2eb9bb0992415819e|2ca1f6da0d]: Windows compilation in pkgs fails when using msys/configure. Rename configure.in -> configure.ac check-in: 86a892a16a user: jan.nijtmans tags: trunk | |
2015-04-20
| ||
11:52 | proposed fix for[2ca1f6da0dca4a33d57720a2eb9bb0992415819e|2ca1f6da0d]: Windows compilation in pkgs fails when using msys/configure Closed-Leaf check-in: 80c5063e0c user: jan.nijtmans tags: bug-2ca1f6da0d | |
2015-01-23
| ||
18:50 | Bump to tdbc 1.0.3; TEA/autoconf update. check-in: b7669d2c1c user: dgp tags: trunk, tdbc-1-0-3 | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
102 103 104 105 106 107 108 | CFLAGS_WARNING = @CFLAGS_WARNING@ EXEEXT = @EXEEXT@ LDFLAGS_DEFAULT = @LDFLAGS_DEFAULT@ MAKE_LIB = @MAKE_LIB@ MAKE_SHARED_LIB = @MAKE_SHARED_LIB@ MAKE_STATIC_LIB = @MAKE_STATIC_LIB@ MAKE_STUB_LIB = @MAKE_STUB_LIB@ | < | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | CFLAGS_WARNING = @CFLAGS_WARNING@ EXEEXT = @EXEEXT@ LDFLAGS_DEFAULT = @LDFLAGS_DEFAULT@ MAKE_LIB = @MAKE_LIB@ MAKE_SHARED_LIB = @MAKE_SHARED_LIB@ MAKE_STATIC_LIB = @MAKE_STATIC_LIB@ MAKE_STUB_LIB = @MAKE_STUB_LIB@ OBJEXT = @OBJEXT@ RANLIB = @RANLIB@ RANLIB_STUB = @RANLIB_STUB@ SHLIB_CFLAGS = @SHLIB_CFLAGS@ SHLIB_LD = @SHLIB_LD@ SHLIB_LD_LIBS = @SHLIB_LD_LIBS@ STLIB_LD = @STLIB_LD@ |
︙ | ︙ | |||
150 151 152 153 154 155 156 | INCLUDES = @PKG_INCLUDES@ @TCL_INCLUDES@ #INCLUDES = @PKG_INCLUDES@ @TCL_INCLUDES@ @TK_INCLUDES@ @TK_XINCLUDES@ PKG_CFLAGS = @PKG_CFLAGS@ # TCL_DEFS is not strictly need here, but if you remove it, then you | | | 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | INCLUDES = @PKG_INCLUDES@ @TCL_INCLUDES@ #INCLUDES = @PKG_INCLUDES@ @TCL_INCLUDES@ @TK_INCLUDES@ @TK_XINCLUDES@ PKG_CFLAGS = @PKG_CFLAGS@ # TCL_DEFS is not strictly need here, but if you remove it, then you # must make sure that configure.ac checks for the necessary components # that your library may use. TCL_DEFS can actually be a problem if # you do not compile with a similar machine setup as the Tcl core was # compiled with. #DEFS = $(TCL_DEFS) @DEFS@ $(PKG_CFLAGS) DEFS = @DEFS@ $(PKG_CFLAGS) # Move pkgIndex.tcl to 'BINARIES' var if it is generated in the Makefile |
︙ | ︙ | |||
263 264 265 266 267 268 269 | # library. In most cases these object files will correspond to the # source files above. #======================================================================== $(PKG_LIB_FILE): $(PKG_OBJECTS) -rm -f $(PKG_LIB_FILE) ${MAKE_LIB} | < | 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | # library. In most cases these object files will correspond to the # source files above. #======================================================================== $(PKG_LIB_FILE): $(PKG_OBJECTS) -rm -f $(PKG_LIB_FILE) ${MAKE_LIB} $(RANLIB) $(PKG_LIB_FILE) $(PKG_STUB_LIB_FILE): $(PKG_STUB_OBJECTS) -rm -f $(PKG_STUB_LIB_FILE) ${MAKE_STUB_LIB} $(RANLIB_STUB) $(PKG_STUB_LIB_FILE) |
︙ | ︙ | |||
309 310 311 312 313 314 315 | dist: dist-clean mkdir -p $(DIST_DIR) cp -p $(srcdir)/ChangeLog $(srcdir)/README* $(srcdir)/license* \ $(srcdir)/aclocal.m4 $(srcdir)/configure $(srcdir)/*.in \ $(DIST_DIR)/ chmod 664 $(DIST_DIR)/Makefile.in $(DIST_DIR)/aclocal.m4 | | | 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 | dist: dist-clean mkdir -p $(DIST_DIR) cp -p $(srcdir)/ChangeLog $(srcdir)/README* $(srcdir)/license* \ $(srcdir)/aclocal.m4 $(srcdir)/configure $(srcdir)/*.in \ $(DIST_DIR)/ chmod 664 $(DIST_DIR)/Makefile.in $(DIST_DIR)/aclocal.m4 chmod 775 $(DIST_DIR)/configure $(DIST_DIR)/configure.ac for i in $(srcdir)/*.[ch]; do \ if [ -f $$i ]; then \ cp -p $$i $(DIST_DIR)/ ; \ fi; \ done; |
︙ | ︙ | |||
376 377 378 379 380 381 382 | #======================================================================== # End of user-definable section #======================================================================== #======================================================================== # Don't modify the file to clean here. Instead, set the "CLEANFILES" | | | 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | #======================================================================== # End of user-definable section #======================================================================== #======================================================================== # Don't modify the file to clean here. Instead, set the "CLEANFILES" # variable in configure.ac #======================================================================== clean: -test -z "$(BINARIES)" || rm -f $(BINARIES) -rm -f *.$(OBJEXT) core *.core -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) -rm -f tdbc.tcl |
︙ | ︙ |
Changes to aclocal.m4.
︙ | ︙ | |||
50 51 52 53 54 55 56 | TEAX_FOREACH(i, $@, [ # check for existence, be strict because it should be present! AS_IF([test ! -f "${srcdir}/$i"], [ AC_MSG_ERROR([could not find header file '${srcdir}/$i'])]) TEAX_LAPPEND(PKG_PRIVATE_HEADERS, $i)]) AC_SUBST(PKG_PRIVATE_HEADERS)]) | < < < < < < < < < < < < < | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | TEAX_FOREACH(i, $@, [ # check for existence, be strict because it should be present! AS_IF([test ! -f "${srcdir}/$i"], [ AC_MSG_ERROR([could not find header file '${srcdir}/$i'])]) TEAX_LAPPEND(PKG_PRIVATE_HEADERS, $i)]) AC_SUBST(PKG_PRIVATE_HEADERS)]) AC_DEFUN([TEAX_SDX], [ AC_PATH_PROG(SDX, sdx, none) TEAX_IFEQ($SDX, none, [ AC_PATH_PROG(SDX_KIT, sdx.kit, none) TEAX_IFNEQ($SDX_KIT, none, [ # We assume that sdx.kit is on the path, and that the default # tclsh is activetcl |
︙ | ︙ |
Changes to configure.
︙ | ︙ | |||
625 626 627 628 629 630 631 | MAJOR_VERSION tdbc_STUB_LIB_PATH tdbc_BUILD_STUB_LIB_PATH tdbc_STUB_LIB_SPEC tdbc_BUILD_STUB_LIB_SPEC tdbc_LIB_SPEC tdbc_BUILD_LIB_SPEC | < < < | 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 | MAJOR_VERSION tdbc_STUB_LIB_PATH tdbc_BUILD_STUB_LIB_PATH tdbc_STUB_LIB_SPEC tdbc_BUILD_STUB_LIB_SPEC tdbc_LIB_SPEC tdbc_BUILD_LIB_SPEC tdbc_LIB_DIR tdbc_BUILD_INCLUDE_SPEC tdbc_INCLUDE_SPEC tdbc_SRC_DIR TCLSH_PROG VC_MANIFEST_EMBED_EXE VC_MANIFEST_EMBED_DLL RANLIB_STUB MAKE_STUB_LIB MAKE_STATIC_LIB MAKE_SHARED_LIB MAKE_LIB |
︙ | ︙ | |||
2198 2199 2200 2201 2202 2203 2204 | #-------------------------------------------------------------------- # Call TEA_INIT as the first TEA_ macro to set up initial vars. # This will define a ${TEA_PLATFORM} variable == "unix" or "windows" # as well as PKG_LIB_FILE and PKG_STUB_LIB_FILE. #-------------------------------------------------------------------- | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | | 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 | #-------------------------------------------------------------------- # Call TEA_INIT as the first TEA_ macro to set up initial vars. # This will define a ${TEA_PLATFORM} variable == "unix" or "windows" # as well as PKG_LIB_FILE and PKG_STUB_LIB_FILE. #-------------------------------------------------------------------- # TEA extensions pass this us the version of TEA they think they # are compatible with. TEA_VERSION="3.9" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for correct TEA configuration" >&5 $as_echo_n "checking for correct TEA configuration... " >&6; } if test x"${PACKAGE_NAME}" = x ; then as_fn_error $? " The PACKAGE_NAME variable must be defined by your TEA configure.ac" "$LINENO" 5 fi if test x"3.9" = x ; then as_fn_error $? " TEA version not specified." "$LINENO" 5 elif test "3.9" != "${TEA_VERSION}" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: warning: requested TEA version \"3.9\", have \"${TEA_VERSION}\"" >&5 $as_echo "warning: requested TEA version \"3.9\", have \"${TEA_VERSION}\"" >&6; } |
︙ | ︙ | |||
2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 | #-------------------------------------------------------------------- # Load the tclConfig.sh file #-------------------------------------------------------------------- | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 | ac_aux_dir= for ac_dir in tclconfig "$srcdir"/tclconfig; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in tclconfig \"$srcdir\"/tclconfig" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. #-------------------------------------------------------------------- # Load the tclConfig.sh file #-------------------------------------------------------------------- |
︙ | ︙ | |||
5738 5739 5740 5741 5742 5743 5744 | # A few miscellaneous platform-specific items: # # Define a special symbol for Windows (BUILD_sample in this case) so # that we create the export library with the dll. # # Windows creates a few extra files that need to be cleaned up. # You can add more files to clean if your extension creates any extra | | > > > < < | 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 | # A few miscellaneous platform-specific items: # # Define a special symbol for Windows (BUILD_sample in this case) so # that we create the export library with the dll. # # Windows creates a few extra files that need to be cleaned up. # You can add more files to clean if your extension creates any extra # files by extending CLEANFILES. # Add pkgIndex.tcl if it is generated in the Makefile instead of ./configure # and change Makefile.in to move it from CONFIG_CLEAN_FILES to BINARIES var. # # A few miscellaneous platform-specific items: # TEA_ADD_* any platform specific compiler/build info here. #-------------------------------------------------------------------- #CLEANFILES="$CLEANFILES pkgIndex.tcl" #-------------------------------------------------------------------- # Choose which headers you need. Extension authors should try very # hard to only rely on the Tcl public header files. Internal headers # contain private data structures and are subject to change without # notice. |
︙ | ︙ | |||
8874 8875 8876 8877 8878 8879 8880 |
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 | #-------------------------------------------------------------------- # Determine the name of the tclsh and/or wish executables in the # Tcl and Tk build directories or the location they were installed # into. These paths are used to support running test cases only, # the Makefile should not be making use of these paths to generate # a pkgIndex.tcl file or anything else at extension build time. |
︙ | ︙ | |||
8997 8998 8999 9000 9001 9002 9003 | eval "tdbc_BUILD_INCLUDE_SPEC=\"-I`${CYGPATH} ${tdbc_SRC_DIR}/generic`\"" # Develop a fully qualified path for where .tcl files for the tdbc package # appear at run time. tdbc_LIB_DIR="${libdir}/${PACKAGE_NAME}${PACKAGE_VERSION}" | < < < < < < | 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 | eval "tdbc_BUILD_INCLUDE_SPEC=\"-I`${CYGPATH} ${tdbc_SRC_DIR}/generic`\"" # Develop a fully qualified path for where .tcl files for the tdbc package # appear at run time. tdbc_LIB_DIR="${libdir}/${PACKAGE_NAME}${PACKAGE_VERSION}" # Make the export configuration for the TDBC package #-------------------------------------------------------------------- # These are for tdbcConfig.sh #-------------------------------------------------------------------- |
︙ | ︙ | |||
10203 10204 10205 10206 10207 10208 10209 | $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi | < < < | 10139 10140 10141 10142 10143 10144 10145 | $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi |
Name change from configure.in to configure.ac.
1 2 3 4 | #!/bin/bash -norc dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tcl installation dnl to configure the system for the local environment. | < < > > < > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #!/bin/bash -norc dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tcl installation dnl to configure the system for the local environment. #----------------------------------------------------------------------- # Set your package name and version numbers here. # # This initializes the environment with PACKAGE_NAME and PACKAGE_VERSION # set as provided. These will also be added as -D defs in your Makefile # so you can encode the package version directly into the source files. # This will also define a special symbol for Windows (BUILD_<PACKAGE_NAME> # so that we create the export library with the dll. #----------------------------------------------------------------------- AC_INIT([tdbc], [1.0.3]) #-------------------------------------------------------------------- # Call TEA_INIT as the first TEA_ macro to set up initial vars. # This will define a ${TEA_PLATFORM} variable == "unix" or "windows" # as well as PKG_LIB_FILE and PKG_STUB_LIB_FILE. #-------------------------------------------------------------------- TEA_INIT([3.9]) AC_CONFIG_AUX_DIR(tclconfig) #-------------------------------------------------------------------- # Load the tclConfig.sh file #-------------------------------------------------------------------- TEA_PATH_TCLCONFIG TEA_LOAD_TCLCONFIG |
︙ | ︙ | |||
86 87 88 89 90 91 92 | # public headers that need to be installed in TEA_ADD_HEADERS, # stub library C source files to compile in TEA_ADD_STUB_SOURCES, # and runtime Tcl library files in TEA_ADD_TCL_SOURCES. # This defines PKG(_STUB)_SOURCES, PKG(_STUB)_OBJECTS, PKG_HEADERS # and PKG_TCL_SOURCES. #----------------------------------------------------------------------- | | | | > > > < < | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | # public headers that need to be installed in TEA_ADD_HEADERS, # stub library C source files to compile in TEA_ADD_STUB_SOURCES, # and runtime Tcl library files in TEA_ADD_TCL_SOURCES. # This defines PKG(_STUB)_SOURCES, PKG(_STUB)_OBJECTS, PKG_HEADERS # and PKG_TCL_SOURCES. #----------------------------------------------------------------------- TEA_ADD_SOURCES([tdbc.c tdbcStubInit.c tdbcTokenize.c]) TEA_ADD_HEADERS([generic/tdbc.h generic/tdbcInt.h generic/tdbcDecls.h]) if test "${TCL_MAJOR_VERSION}" -eq 8 ; then if test "${TCL_MINOR_VERSION}" -eq 5 ; then TEA_ADD_INCLUDES([${TCLOO_INCLUDE_SPEC}]) TEA_ADD_LIBS([${TCLOO_STUB_LIB_SPEC}]) fi fi TEA_ADD_CFLAGS([${TCLOO_CFLAGS}]) TEA_ADD_STUB_SOURCES([tdbcStubLib.c]) TEA_ADD_TCL_SOURCES([library/tdbc.tcl]) #-------------------------------------------------------------------- # A few miscellaneous platform-specific items: # # Define a special symbol for Windows (BUILD_sample in this case) so # that we create the export library with the dll. # # Windows creates a few extra files that need to be cleaned up. # You can add more files to clean if your extension creates any extra # files by extending CLEANFILES. # Add pkgIndex.tcl if it is generated in the Makefile instead of ./configure # and change Makefile.in to move it from CONFIG_CLEAN_FILES to BINARIES var. # # A few miscellaneous platform-specific items: # TEA_ADD_* any platform specific compiler/build info here. #-------------------------------------------------------------------- #CLEANFILES="$CLEANFILES pkgIndex.tcl" #-------------------------------------------------------------------- # Choose which headers you need. Extension authors should try very # hard to only rely on the Tcl public header files. Internal headers # contain private data structures and are subject to change without # notice. |
︙ | ︙ | |||
169 170 171 172 173 174 175 | #-------------------------------------------------------------------- # This macro generates a line to use when building a library. It # depends on values set by the TEA_ENABLE_SHARED, TEA_ENABLE_SYMBOLS, # and TEA_LOAD_TCLCONFIG macros above. #-------------------------------------------------------------------- TEA_MAKE_LIB | < | 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | #-------------------------------------------------------------------- # This macro generates a line to use when building a library. It # depends on values set by the TEA_ENABLE_SHARED, TEA_ENABLE_SYMBOLS, # and TEA_LOAD_TCLCONFIG macros above. #-------------------------------------------------------------------- TEA_MAKE_LIB #-------------------------------------------------------------------- # Determine the name of the tclsh and/or wish executables in the # Tcl and Tk build directories or the location they were installed # into. These paths are used to support running test cases only, # the Makefile should not be making use of these paths to generate # a pkgIndex.tcl file or anything else at extension build time. |
︙ | ︙ | |||
202 203 204 205 206 207 208 | TEAX_INCLUDE_LINE(tdbc_BUILD_INCLUDE_SPEC, [${tdbc_SRC_DIR}/generic]) # Develop a fully qualified path for where .tcl files for the tdbc package # appear at run time. tdbc_LIB_DIR="${libdir}/${PACKAGE_NAME}${PACKAGE_VERSION}" AC_SUBST(tdbc_LIB_DIR) | < < < < < < < < < < < < < < < < < < | < < < < | 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | TEAX_INCLUDE_LINE(tdbc_BUILD_INCLUDE_SPEC, [${tdbc_SRC_DIR}/generic]) # Develop a fully qualified path for where .tcl files for the tdbc package # appear at run time. tdbc_LIB_DIR="${libdir}/${PACKAGE_NAME}${PACKAGE_VERSION}" AC_SUBST(tdbc_LIB_DIR) # Make the export configuration for the TDBC package TEA_EXPORT_CONFIG([tdbc]) # Set up to produce Makefile from Makefile.in and tdbcConfig.sh from # tdbcConfig.sh.in. AC_OUTPUT([Makefile pkgIndex.tcl tdbcConfig.sh]) |
Changes to generic/tdbc.h.
︙ | ︙ | |||
52 53 54 55 56 57 58 | #ifdef __cplusplus } #endif /* * TDBC_VERSION and TDBC_PATCHLEVEL here must match the ones that | | | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | #ifdef __cplusplus } #endif /* * TDBC_VERSION and TDBC_PATCHLEVEL here must match the ones that * appear near the top of configure.ac. */ #define TDBC_VERSION "1.0.3" #define TDBC_PATCHLEVEL "1.0.3" /* * Include the Stubs declarations for the public API, generated from |
︙ | ︙ |
Changes to misc/MakingReleases.txt.
1 2 3 4 5 | To advance the version number: (1) Edit the following files. tdbc/generic/tdbc.h - TDBC_VERSION and TDBC_PATCHLEVEL | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | To advance the version number: (1) Edit the following files. tdbc/generic/tdbc.h - TDBC_VERSION and TDBC_PATCHLEVEL tdbc/configure.ac - AC_INIT() tdbc/README tdbc/configure - Regenerate tdbc/ChangeLog tdbcodbc/configure.ac - AC_INIT() tdbcodbc/README tdbcodbc/configure - Regenerate tdbcodbc/ChangeLog tdbcmysql/configure.ac - AC_INIT() tdbcmysql/README tdbcmysql/configure - Regenerate tdbcmysql/ChangeLog tdbcpostgres/configure.ac - AC_INIT() tdbcpostgres/README tdbcpostgres/configure - Regenerate tdbcpostgres/ChangeLog tdbcsqlite3/library/tdbcsqlite3.tcl - [package provide] tdbcsqlite3/configure.ac - AC_INIT() tdbcsqlite3/README tdbcsqlite3/configure - Regenerate tdbcsqlite3/ChangeLog (2) Commit to fossil. Tag the release. Sync. Make a clean install of all four packages inside a virgin Tcl/Tk. Copy libmysql.dll into the tdbcmysql lib directory, and install the sqlite3 package. Run tests against |
︙ | ︙ |
Changes to win/makefile.vc.
︙ | ︙ | |||
170 171 172 173 174 175 176 | # number and returns all character until a character not in [0-9.ab] # is read. !if [echo REM = This file is generated from Makefile.vc > versions.vc] !endif # get project version from row AC_INIT([tdbc], [1.0b17]) !if [echo DOTVERSION = \>> versions.vc] \ | | | | | | 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | # number and returns all character until a character not in [0-9.ab] # is read. !if [echo REM = This file is generated from Makefile.vc > versions.vc] !endif # get project version from row AC_INIT([tdbc], [1.0b17]) !if [echo DOTVERSION = \>> versions.vc] \ && [nmakehlp -V ..\configure.ac AC_INIT >> versions.vc] !endif !if [echo TCL_VERSION_REQ = \>> versions.vc] \ && [nmakehlp -V ..\configure.ac TCL_VERSION_REQ >> versions.vc] !endif !if [echo TCL_VERSION_DESIRED = \>> versions.vc] \ && [nmakehlp -V ..\configure.ac TCL_VERSION_DESIRED >> versions.vc] !endif !if [echo TCLOO_VERSION_REQ = \>> versions.vc] \ && [nmakehlp -V ..\configure.ac TCLOO_VERSION_REQ >> versions.vc] !endif !include "versions.vc" VERSION = $(DOTVERSION:.=) STUBPREFIX = $(PROJECT)stub |
︙ | ︙ |