Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Added manifest.uuid file to clean files |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | tls-1.8 |
| Files: | files | file ages | folders |
| SHA3-256: |
28f9ada2252b3003b4d69f198e904a24 |
| User & Date: | bohagan 2024-10-26 16:12:49 |
Context
|
2024-10-26
| ||
| 16:38 | Removed obsolete RCS version strings. Added file header info. check-in: fbdf0eae0a user: bohagan tags: tls-1.8 | |
| 16:12 | Added manifest.uuid file to clean files check-in: 28f9ada225 user: bohagan tags: tls-1.8 | |
| 16:08 | Removed extra padding, convert spaces to tabs, etc. check-in: 1ef3d3faef user: bohagan tags: tls-1.8 | |
Changes
Changes to configure.ac.
| ︙ | ︙ | |||
81 82 83 84 85 86 87 | # 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. #-------------------------------------------------------------------- | | | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# 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.
#--------------------------------------------------------------------
TEA_ADD_CLEANFILES([pkgIndex.tcl generic/tls.tcl.h tlsUuid.h manifest.uuid])
if test "${TEA_PLATFORM}" = "windows" ; then
TEA_ADD_CLEANFILES([*.lib *.dll *.exp *.ilk *.pdb vc*.pch])
else
TEA_ADD_CLEANFILES([*.so])
fi
AC_SUBST(CLEANFILES)
|
| ︙ | ︙ |
Deleted manifest.uuid.
|
| < |
Changes to win/makefile.vc.
| ︙ | ︙ | |||
61 62 63 64 65 66 67 68 | #--------------------------------------------------------------------- # Project specific targets #--------------------------------------------------------------------- all: setup default-target clean: default-clean | > | | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | #--------------------------------------------------------------------- # Project specific targets #--------------------------------------------------------------------- all: setup default-target clean: default-clean @if exist $(WIN_DIR)\..\manifest.uuid del $(WIN_DIR)\..\manifest.uuid realclean: clean default-hose # Explicit dependency rules $(PRJ_OBJS): $(TMP_DIR)\tls.tcl.h $(TMP_DIR)\tlsUuid.h # We must define a pkgindex target that will create a pkgIndex.tcl # file in the $(OUT_DIR) directory. We can just redirect to the # default-pkgindex target for our sample extension. |
| ︙ | ︙ |