Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merge trunk |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | stu-pkgIndex |
Files: | files | file ages | folders |
SHA3-256: |
e0e3b38d3fd5264fc0741190ad215cd2 |
User & Date: | stu 2017-12-17 16:01:11 |
Context
2018-01-05
| ||
06:42 | Merge trunk. Closed-Leaf check-in: d2ab795efa user: stu tags: stu-pkgIndex | |
2017-12-17
| ||
16:01 | Merge trunk check-in: e0e3b38d3f user: stu tags: stu-pkgIndex | |
16:00 | Determine tdbc_BUILD_LIBRARY_PATH, needed for TDBC_LIBRARY, as is done in the other tdbc-* drivers. check-in: b23639ee5a user: stu tags: trunk | |
15:45 | Merge trunk check-in: 8a8bfe890e user: stu tags: stu-pkgIndex | |
Changes
Changes to configure.
588
589
590
591
592
593
594
595
596
597
598
599
600
601
....
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
|
TCL_MAJOR_VERSION
STUBS_BUILD
SHARED_BUILD
TCL_THREADS
TCL_INCLUDES
TDBC_LIB_FILE
TDBC_VERSION
tdbc_STUB_LIB_PATH
tdbc_STUB_LIB_SPEC
tdbc_STUB_LIB_FILE
tdbc_LIB_SPEC
tdbc_LIB_FILE
tdbc_SRC_DIR
tdbc_BIN_DIR
................................................................................
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: file not found" >&5
$as_echo "file not found" >&6; }
fi
fi
fi
#-----------------------------------------------------------------------
# Handle the --prefix=... option by defaulting to what Tcl gave.
|
>
>
>
>
>
>
>
>
>
>
>
|
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
....
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
|
TCL_MAJOR_VERSION STUBS_BUILD SHARED_BUILD TCL_THREADS TCL_INCLUDES TDBC_LIB_FILE TDBC_VERSION tdbc_LIBRARY_PATH tdbc_STUB_LIB_PATH tdbc_STUB_LIB_SPEC tdbc_STUB_LIB_FILE tdbc_LIB_SPEC tdbc_LIB_FILE tdbc_SRC_DIR tdbc_BIN_DIR ................................................................................ { $as_echo "$as_me:${as_lineno-$LINENO}: result: file not found" >&5 $as_echo "file not found" >&6; } fi fi fi # The next bit probably ought to be in TEA_LOAD_CONFIG { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Looking for \"${tdbc_BIN_DIR}/Makefile\"" >&5 $as_echo "$as_me: WARNING: Looking for \"${tdbc_BIN_DIR}/Makefile\"" >&2;} if test -f "${tdbc_BIN_DIR}/Makefile" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Found Makefile - using build include spec and lib specs for tdbc" >&5 $as_echo "$as_me: WARNING: Found Makefile - using build include spec and lib specs for tdbc" >&2;} tdbc_INCLUDE_SPEC=${tdbc_BUILD_INCLUDE_SPEC} tdbc_LIBRARY_PATH=${tdbc_BUILD_LIBRARY_PATH} fi #----------------------------------------------------------------------- # Handle the --prefix=... option by defaulting to what Tcl gave. |
Changes to configure.ac.
25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
#---------------------------------------------------------------------- # Load the tdbcConfig.sh file #---------------------------------------------------------------------- TEA_PATH_CONFIG(tdbc) TEA_LOAD_CONFIG(tdbc) AC_SUBST(TDBC_VERSION) AC_SUBST(tdbc_BIN_DIR) AC_SUBST(TDBC_LIB_FILE) #----------------------------------------------------------------------- # Handle the --prefix=... option by defaulting to what Tcl gave. # Must be called after TEA_LOAD_TCLCONFIG and before TEA_SETUP_COMPILER. |
> > > > > > > > |
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
#---------------------------------------------------------------------- # Load the tdbcConfig.sh file #---------------------------------------------------------------------- TEA_PATH_CONFIG(tdbc) TEA_LOAD_CONFIG(tdbc) # The next bit probably ought to be in TEA_LOAD_CONFIG AC_MSG_WARN([Looking for "${tdbc_BIN_DIR}/Makefile"]) if test -f "${tdbc_BIN_DIR}/Makefile" ; then AC_MSG_WARN([Found Makefile - using build include spec and lib specs for tdbc]) tdbc_INCLUDE_SPEC=${tdbc_BUILD_INCLUDE_SPEC} tdbc_LIBRARY_PATH=${tdbc_BUILD_LIBRARY_PATH} fi AC_SUBST(tdbc_LIBRARY_PATH) AC_SUBST(TDBC_VERSION) AC_SUBST(tdbc_BIN_DIR) AC_SUBST(TDBC_LIB_FILE) #----------------------------------------------------------------------- # Handle the --prefix=... option by defaulting to what Tcl gave. # Must be called after TEA_LOAD_TCLCONFIG and before TEA_SETUP_COMPILER. |