]> granicus.if.org Git - apache/commitdiff
No, we don't do this at this project, say 22 years of Unix contributors.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 14 Mar 2018 06:37:01 +0000 (06:37 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 14 Mar 2018 06:37:01 +0000 (06:37 +0000)
So, stop already.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1826699 13f79535-47bb-0310-9956-ffa450edef68

Makefile.win

index a8155d4af60d0f0f016ea95b54f5b8b2ccc62d5c..dfdca961702ea63f9f48f26d6b720e38e54c18b0 100644 (file)
@@ -1026,190 +1026,6 @@ _install:
        -mkdir "$(INSTDIR)\lib"
        -mkdir "$(INSTDIR)\logs"
        -mkdir "$(INSTDIR)\modules"
-       copy ABOUT_APACHE "$(INSTDIR)\ABOUT_APACHE.txt" <.y
-       copy CHANGES      "$(INSTDIR)\CHANGES.txt" <.y
-       copy INSTALL      "$(INSTDIR)\INSTALL.txt" <.y
-       copy LICENSE      "$(INSTDIR)\LICENSE.txt" <.y
-       copy NOTICE       "$(INSTDIR)\NOTICE.txt" <.y
-       copy README       "$(INSTDIR)\README.txt" <.y
-       type << >> "$(INSTDIR)\NOTICE.txt"
-
-Regular expression support is provided by the PCRE library package,
-which is open source software, written by Philip Hazel, and copyright
-by the University of Cambridge, England. The original software is
-available from
-  ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
-<<
-       -awk -f <<script1.awk < "srclib\pcre\LICENCE" >> "$(INSTDIR)\LICENSE.txt"
-BEGIN {
-    print "";
-    print "For the pcre.dll component:";
-    print "";
-    while ( getline > 0 ) {
-       if ( $$0 ~ /^End$$/ ) $$0 = "END OF PCRE LICENSE";
-       print $$0;
-   }
-}
-<<
-!IF EXIST("srclib\openssl")
-       -copy srclib\openssl\apps\openssl.cnf "$(INSTDIR)\conf\openssl.cnf" <.y
-       type << >> "$(INSTDIR)\NOTICE.txt"
-
-This binary distribution includes cryptographic software written by
-Eric Young (eay@cryptsoft.com), software written by Tim Hudson 
-(tjh@cryptsoft.com), and software developed by the OpenSSL Project 
-for use in the OpenSSL Toolkit <http://www.openssl.org/>.
-<<
-       -awk -f <<script.awk < "srclib\openssl\LICENSE" >> "$(INSTDIR)\LICENSE.txt"
-BEGIN {
-    print "";
-    print "For the libeay32.dll, ssleay32.dll and openssl.exe components:";
-    print "";
-    while ( getline > 0 ) {
-       print $$0;
-   }
-}
-<<
-       copy << "$(INSTDIR)\OPENSSL-NEWS.txt" <.y
-
- Apache HTTP Server 2.5 Limited OpenSSL Distribution
-
- This binary distribution includes the minimal components of OpenSSL required
- to support mod_ssl for Apache HTTP Server version 2.5 (details are listed 
- in OPENSSL-README.txt.)  For the complete list of CHANGES to this and later 
- versions of OpenSSL, please refer to the definative source,
- <http://www.openssl.org/news/changelog.html>, or see the CHANGES file in the
- full binary or source distribution package from <http://www.openssl.org/>.
-
- These OpenSSL binaries were built for distribution from the U.S. without 
- support for the patented encryption methods IDEA, MDC-2 or RC5.
-
---------------------------------------------------------------------------------
-
-<<
-       -copy "$(INSTDIR)\OPENSSL-NEWS.txt" \
-           + srclib\openssl\NEWS "$(INSTDIR)\OPENSSL-NEWS.txt"
-       copy << "$(INSTDIR)\OPENSSL-README.txt" <.y
-
- Apache HTTP Server 2.5 Limited OpenSSL Distribution
-
- This binary installation of OpenSSL is a limited distribution of the
- files derived from the OpenSSL project:
-
-   LICENSE.txt (includes openssl LICENSE)
-   OPENSSL-NEWS.txt
-   OPENSSL-README.txt
-   conf\openssl.cnf
-   bin\libeay32.dll
-   bin\ssleay32.dll
-   bin\openssl.exe
-
- These are the minimal libraries and tools required to use mod_ssl as 
- distributed with Apache HTTP Server version 2.5.  No library link files, 
- headers or sources are distributed with this binary distribution.  Please 
- refer to the <http://www.openssl.org/> site for complete source or binary 
- distributions.
-
- These OpenSSL binaries were built for distribution from the U.S. without 
- support for the patented encryption methods IDEA, MDC-2 or RC5.
-
- The Apache HTTP Project only supports the binary distribution of these files
- and development of the mod_ssl module.  We cannot provide support assistance
- for using or configuring the OpenSSL package or these modules.  Please refer
- all installation and configuration questions to the appropriate forum,
- such as the user supported lists, <http://httpd.apache.org/userslist.html> 
- the Apache HTTP Server user's list or <http://www.openssl.org/support/> the
- OpenSSL support page.
-
---------------------------------------------------------------------------------
-
-<<
-       -copy "$(INSTDIR)\OPENSSL-README.txt" \
-           + srclib\openssl\README "$(INSTDIR)\OPENSSL-README.txt"
-!ENDIF
-!IF EXIST("srclib\zlib")
-       type << >> "$(INSTDIR)\NOTICE.txt"
-
-This binary distribution of mod_deflate.so includes zlib compression code
-<http://www.gzip.org/zlib/> written by Jean-loup Gailly (jloup@gzip.org)
-and Mark Adler (madler@alumni.caltech.edu) .
-<<
-       -awk -f <<script.awk < "srclib\zlib\README" >> "$(INSTDIR)\LICENSE.txt"
-BEGIN {
-    while ( getline > 0 ) {
-       if ( $$0 ~ /Copyright notice:/ ) {
-           print "";
-           print "For the mod_deflate zlib compression component:";
-           while ( getline > 0 && $$0 !~ /^[^ ]/ ) {
-               print $$0;
-           }
-           exit 0;
-       }
-    }
-    exit 1;
-}
-<<
-!ENDIF
-!IF EXIST("srclib\lua")
-       type << >> "$(INSTDIR)\NOTICE.txt"
-
-This binary distribution of mod_lua.so includes the Lua language, 
-developed at Lua.org, a laboratory of the Department of Computer Science 
-of PUC-Rio (the Pontifical Catholic University of Rio de Janeiro in Brazil).
-For complete information, visit Lua's web site at http://www.lua.org/
-<<
-       -awk -f <<script.awk < "srclib\lua\COPYRIGHT" >> "$(INSTDIR)\LICENSE.txt"
-BEGIN {
-    print "";
-    print "For the mod_lua language component:";
-    print "";
-    while ( getline > 0 && $$0 !~ /end of COPYRIGHT/ ) {
-       print $$0;
-    }
-    exit 0;
-}
-<<
-!ENDIF
-!IF EXIST("srclib\libxml2")
-       type << >> "$(INSTDIR)\NOTICE.txt"
-
-This binary distributions of mod_proxy_html.so and mod_xml2enc.so include the
-libxml2 C library written by Daniel Veillard (daniel veillard.com), Bjorn 
-Reese (breese users.sourceforge.net) and Gary Pennington (Gary.Pennington 
-uk.sun.com). For complete information, visit LibXML2's web site at 
-https://http://www.xmlsoft.org/
-<<
-       -awk -f <<script.awk < "srclib\libxml2\Copyright" >> "$(INSTDIR)\LICENSE.txt"
-BEGIN {
-    print "";
-    print "For the mod_proxy_html and mod_xml2enc components:";
-    print "";
-           while ( getline > 0 ) {
-       print $$0;
-    }
-    exit 0;
-}
-<<
-!ENDIF
-!IF EXIST("srclib\nghttp2")
-       type << >> "$(INSTDIR)\NOTICE.txt"
-
-This binary distribution of mod_http2.so includes nghttp2 C library written 
-by Tatsuhiro Tsujikawa. For complete information, visit nghttp2's web site 
-at https://nghttp2.org/
-<<
-       -awk -f <<script.awk < "srclib\nghttp2\COPYING" >> "$(INSTDIR)\LICENSE.txt"
-BEGIN {
-    print "";
-    print "For the mod_http2 component:";
-    print "";
-           while ( getline > 0 ) {
-       print $$0;
-    }
-    exit 0;
-}
-<<
-!ENDIF
        $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=$(SHORT) LONG=$(LONG) \
                _copybin src_exe=exe src_dll=dll src_so=so             \
                inst_exe="$(INSTDIR)\bin"                              \