Overview
Comment: | Fixed out-of-tree build issue |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tls-1-7 |
Files: | files | file ages | folders |
SHA1: |
989f6d6ef8edd290ff8065722e2a8e6a |
User & Date: | rkeene on 2016-11-23 05:15:04 |
Other Links: | branch diff | manifest | tags |
Context
2016-11-23
| ||
05:41 | Updated ignores check-in: f9f2665472 user: rkeene tags: tls-1-7 | |
05:15 | Fixed out-of-tree build issue check-in: 989f6d6ef8 user: rkeene tags: tls-1-7 | |
05:14 | Fixed issue with building without Tcl threads check-in: 3135e8cc5c user: rkeene tags: tls-1-7 | |
Changes
Modified Makefile.in from [09f35f7f9b] to [bb7609bcc5].
1 2 3 | CC = @[email protected] CFLAGS = @[email protected] @[email protected] CPPFLAGS = @[email protected] [email protected]@ @[email protected] | | < < > > > > > > > > > | | | 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 35 36 37 | CC = @[email protected] CFLAGS = @[email protected] @[email protected] CPPFLAGS = @[email protected] [email protected]@ @[email protected] LDFLAGS = @[email protected] @[email protected] LIBS = @[email protected] INSTALL = @[email protected] PACKAGE_VERSION = @[email protected] TCL_PACKAGE_PATH = @[email protected] PACKAGE_INSTALL_DIR = $(TCL_PACKAGE_PATH)/tcltls$(PACKAGE_VERSION) all: [email protected]@ [email protected]@: tls.o tlsBIO.o tlsIO.o tlsX509.o $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o [email protected]@ tls.o tlsBIO.o tlsIO.o tlsX509.o $(LIBS) install: [email protected]@ pkgIndex.tcl tls.o: @[email protected]/tls.c @[email protected]/tlsInt.h @[email protected]/tclOpts.h tlsBIO.o: @[email protected]/tlsBIO.c @[email protected]/tlsInt.h tlsIO.o: @[email protected]/tlsIO.c @[email protected]/tlsInt.h tlsX509.o: @[email protected]/tlsX509.c @[email protected]/tlsInt.h %.o: @[email protected]/%.c $(CC) $(CPPFLAGS) $(CFLAGS) -o "[email protected]" -c "$<" clean: rm -f tls.o tlsBIO.o tlsIO.o tlsX509.o distclean: clean rm -f config.log config.status rm -f Makefile pkgIndex.tcl mrproper: distclean rm -f @[email protected]/configure rm -rf @[email protected]/aclocal @[email protected]/autom4te.cache .PHONY: all install clean distclean mrproper |