Overview
Comment: | Better handling of the case where the shared and static extensions are the same (AIX) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9c59fec751af9a41041749cd793b7abd |
User & Date: | rkeene on 2019-04-09 15:58:47 |
Other Links: | manifest | tags |
Context
2019-04-09
| ||
17:25 | Better handling of reading certificate PEM data, resolves [2059171e7d] check-in: 8e0ed4e723 user: rkeene tags: trunk | |
15:58 | Better handling of the case where the shared and static extensions are the same (AIX) check-in: 9c59fec751 user: rkeene tags: trunk | |
2018-10-30
| ||
14:20 | Applied patch from Jinhu to address [94c6a431fee] check-in: afec51b85b user: rkeene tags: trunk | |
Changes
Modified Makefile.in from [4a2244787b] to [4aa8763c1f].
︙ | ︙ | |||
14 15 16 17 18 19 20 21 | INSTALL = @[email protected] INSTALL_PROGRAM = @[email protected] INSTALL_DATA = @[email protected] VPATH = @[email protected] all: @[email protected] # The shared object target | > | | | | > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | INSTALL = @[email protected] INSTALL_PROGRAM = @[email protected] INSTALL_DATA = @[email protected] VPATH = @[email protected] all: @[email protected] ifeq (@[email protected],shared) # The shared object target @EXTENSION_TARGE[email protected]: tls.o tlsBIO.o tlsIO.o tlsX509.o Makefile $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o [email protected]@ tls.o tlsBIO.o tlsIO.o tlsX509.o $(LIBS) else # The static target @EXTENSION_TARGE[email protected]: tls.o tlsBIO.o tlsIO.o tlsX509.o Makefile $(AR) rcu tcltls.a.new tls.o tlsBIO.o tlsIO.o tlsX509.o -$(RANLIB) tcltls.a.new mv tcltls.a.new tcltls.a endif # Dependencies for all our targets tls.o: @[email protected]/tls.c @[email protected]/tlsInt.h @[email protected]/tclOpts.h tls.tcl.h dh_params.h Makefile tlsBIO.o: @[email protected]/tlsBIO.c @[email protected]/tlsInt.h Makefile tlsIO.o: @[email protected]/tlsIO.c @[email protected]/tlsInt.h Makefile tlsX509.o: @[email protected]/tlsX509.c @[email protected]/tlsInt.h Makefile |
︙ | ︙ |