Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix --enable-symbols build on Cygwin. Reported by François Vogel |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
bd5464f13d78c391c5a7b3ed60fd6a1a |
| User & Date: | jan.nijtmans 2015-11-16 10:55:42.463 |
Context
|
2015-11-17
| ||
| 17:01 | Spanish translation of example corrected check-in: 6e11288d6a user: oehhar tags: trunk | |
|
2015-11-16
| ||
| 10:55 | Fix --enable-symbols build on Cygwin. Reported by François Vogel check-in: bd5464f13d user: jan.nijtmans tags: trunk | |
| 10:32 | Fix --enable-symbols build on Cygwin. Reported by François Vogel check-in: 2de2bdc2f3 user: jan.nijtmans tags: core-8-5-branch | |
|
2015-11-13
| ||
| 08:42 | Fix [https://www.sqlite.org/src/info/34eb6911afee09e7|34eb6911af], taken over from SQLite: Fix uses ... check-in: 2ae64b3400 user: jan.nijtmans tags: trunk | |
Changes
Changes to unix/Makefile.in.
| ︙ | ︙ | |||
624 625 626 627 628 629 630 |
# library or non-shared library for Tcl.
${LIB_FILE}: ${STUB_LIB_FILE} ${OBJS}
rm -f $@
@MAKE_LIB@
${STUB_LIB_FILE}: ${STUB_LIB_OBJS}
@if test "x${LIB_FILE}" = "xlibtcl${MAJOR_VERSION}.${MINOR_VERSION}.dll"; then \
| | | 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 |
# library or non-shared library for Tcl.
${LIB_FILE}: ${STUB_LIB_FILE} ${OBJS}
rm -f $@
@MAKE_LIB@
${STUB_LIB_FILE}: ${STUB_LIB_OBJS}
@if test "x${LIB_FILE}" = "xlibtcl${MAJOR_VERSION}.${MINOR_VERSION}.dll"; then \
(cd ${TOP_DIR}/win; ${MAKE} winextensions); \
fi
rm -f $@
@MAKE_STUB_LIB@
# Make target which outputs the list of the .o contained in the Tcl lib useful
# to build a single big shared library containing Tcl and other extensions.
# Used for the Tcl Plugin. -- dl
|
| ︙ | ︙ |
Changes to win/Makefile.in.
| ︙ | ︙ | |||
415 416 417 418 419 420 421 | TCL_DOCS = "$(ROOT_DIR_NATIVE)"/doc/*.[13n] all: binaries libraries doc packages tcltest: $(TCLSH) $(TEST_DLL_FILE) | | > > | 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 |
TCL_DOCS = "$(ROOT_DIR_NATIVE)"/doc/*.[13n]
all: binaries libraries doc packages
tcltest: $(TCLSH) $(TEST_DLL_FILE)
binaries: $(TCL_STUB_LIB_FILE) @LIBRARIES@ winextensions $(TCLSH)
winextensions: ${DDE_DLL_FILE} ${REG_DLL_FILE}
libraries:
doc:
$(TCLSH): $(TCLSH_OBJS) @LIBRARIES@ $(TCL_STUB_LIB_FILE) tclsh.$(RES)
$(CC) $(CFLAGS) $(TCLSH_OBJS) $(TCL_LIB_FILE) $(TCL_STUB_LIB_FILE) $(LIBS) \
|
| ︙ | ︙ |