Overview
Comment: | * Makefile.in (dist): create dist target for archive distributions |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | tls-1-4 |
Files: | files | file ages | folders |
SHA1: |
63fc070abef795ea7c8184d50412ffe5 |
User & Date: | hobbs on 2000-08-23 17:39:04 |
Other Links: | manifest | tags |
Context
2000-09-07
| ||
21:16 | * tlsIO.c (Tls_ChannelType): set typeName field of channel type to "tls" (this got lost in move to dynamic version compatability checking). check-in: 44b2bc9c7a user: hobbs tags: trunk | |
2000-08-23
| ||
17:39 | * Makefile.in (dist): create dist target for archive distributions check-in: 63fc070abe user: hobbs tags: trunk, tls-1-4 | |
17:19 | * tests/tlsIO.test (tlsIO-8.1): added a delay on the accept close to make the test work with OpenSSL on Windows (doesn't affect other builds). check-in: 9baaa78c49 user: hobbs tags: trunk | |
Changes
Modified ChangeLog from [7fc8360742] to [3dd0cfac4e].
1 2 3 4 5 6 7 8 | 2000-08-23 Jeff Hobbs <[email protected]> * tests/tlsIO.test (tlsIO-8.1): added a delay on the accept close to make the test work with OpenSSL on Windows (doesn't affect other builds). * tls.htm: updated with notes for 1.4. | > > | 1 2 3 4 5 6 7 8 9 10 | 2000-08-23 Jeff Hobbs <[email protected]> * Makefile.in (dist): create dist target for archive distributions * tests/tlsIO.test (tlsIO-8.1): added a delay on the accept close to make the test work with OpenSSL on Windows (doesn't affect other builds). * tls.htm: updated with notes for 1.4. |
︙ | ︙ |
Modified Makefile.in from [e825a87c75] to [872e9909b6].
︙ | ︙ | |||
8 9 10 11 12 13 14 | # # Copyright (c) 1999-2000 Ajuba Solutions. # All rights reserved. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # # Copyright (c) 1999-2000 Ajuba Solutions. # All rights reserved. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # RCS: @(#) $Id: Makefile.in,v 1.16 2000/08/23 17:39:04 hobbs Exp $ lib_BINARIES=$(tls_LIB_FILE) BINARIES=$(lib_BINARIES) #======================================================================== # Enumerate the names of the source files included in this package. |
︙ | ︙ | |||
326 327 328 329 330 331 332 333 334 335 336 337 338 339 | distclean: clean -rm -f *.tab.c -rm -f Makefile $(CONFIG_CLEAN_FILES) -rm -f config.cache config.log stamp-h stamp-h[0-9]* -rm -f config.status #======================================================================== # Install binary object libraries. On Windows this includes both .dll and # .lib files. Because the .lib files are not explicitly listed anywhere, # we need to deduce their existence from the .dll file of the same name. # Additionally, the .dll files go into the bin directory, but the .lib # files go into the lib directory. On Unix platforms, all library files # go into the lib directory. In addition, this will generate the pkgIndex.tcl | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 | distclean: clean -rm -f *.tab.c -rm -f Makefile $(CONFIG_CLEAN_FILES) -rm -f config.cache config.log stamp-h stamp-h[0-9]* -rm -f config.status PKG_DIR = $(PACKAGE)$(VERSION) COMPEXE = gzip COMPEXT = gz COMPRESS = tar cvf - $(PKG_DIR) | $(COMPEXE) > $(PKG_DIR).tar.$(COMPEXT) DIST_ROOT = /tmp/dist DIST_DIR = $(DIST_ROOT)/$(PKG_DIR) dist-clean: rm -rf $(DIST_DIR) $(DIST_ROOT)/$(PKG_DIR).tar.$(COMPEXT) dist: dist-clean $(srcdir)/configure mkdir -p $(DIST_DIR) cp -p $(srcdir)/README.txt $(srcdir)/ChangeLog $(srcdir)/tls.htm \ $(srcdir)/configure $(srcdir)/configure.in \ $(srcdir)/Makefile.in $(srcdir)/*.c $(srcdir)/*.h \ $(srcdir)/pkgIndex.tcl.in $(srcdir)/license.terms \ $(srcdir)/aclocal.m4 $(srcdir)/tls.tcl \ $(DIST_DIR) mkdir $(DIST_DIR)/config cp -p $(srcdir)/config/install-sh $(srcdir)/config/mkinstalldirs \ $(srcdir)/config/tcl.m4 \ $(DIST_DIR)/config mkdir $(DIST_DIR)/tests cp -p $(srcdir)/tests/*.tcl $(srcdir)/tests/*.test $(DIST_DIR)/tests mkdir $(DIST_DIR)/tests/certs cp -p $(srcdir)/tests/certs/*.pem $(DIST_DIR)/tests/certs chmod 664 $(DIST_DIR)/Makefile.in chmod 775 $(DIST_DIR)/configure $(DIST_DIR)/configure.in chmod +x $(DIST_DIR)/config/install-sh (cd $(DIST_ROOT); $(COMPRESS);) #======================================================================== # Install binary object libraries. On Windows this includes both .dll and # .lib files. Because the .lib files are not explicitly listed anywhere, # we need to deduce their existence from the .dll file of the same name. # Additionally, the .dll files go into the bin directory, but the .lib # files go into the lib directory. On Unix platforms, all library files # go into the lib directory. In addition, this will generate the pkgIndex.tcl |
︙ | ︙ |