Home | History | Annotate | only in /external/chromium_org/third_party/apache-win32
Up to higher level directory
NameDateSize
ABOUT_APACHE.txt03-Dec-201414.5K
bin/03-Dec-2014
CHANGES.txt03-Dec-2014127.3K
INSTALL.txt03-Dec-20144.3K
LICENSE.txt03-Dec-201435.2K
modules/03-Dec-2014
NOTICE.txt03-Dec-20141.3K
OPENSSL-NEWS.txt03-Dec-201424.4K
OPENSSL-README.txt03-Dec-201410.2K
README-win32.txt03-Dec-20141.6K
README.chromium03-Dec-20142K
README.txt03-Dec-20145.8K
remove_files_not_needed_for_chromium.sh03-Dec-20141.6K

README-win32.txt

      1 New version of APR
      2 ------------------
      3 
      4 Note that the included APR is now version 1.5, which adds several
      5 subtle changes in the behavior of file handling, pipes and process
      6 creation.  Most importantly, there is finer control over the handles
      7 inherited by processes, so the mod_fastcgi or mod_fcgid modules must 
      8 be updated for httpd-2.2.9 or later to run correctly on Windows.
      9 
     10 Most other third party modules are unaffected by this change.
     11 
     12 
     13 Connecting to databases
     14 -----------------------
     15 
     16 Four driver connectors are provided in the binary distribution, for
     17 ODBC, SQLite3, PostgreSQL and Oracle.  All require you to install the 
     18 corresponding client drivers.  ODBC itself is installed at the time 
     19 you install your desired Windows ODBC provider or ODBC client driver.
     20 
     21 The sqlitedll.zip binary file can be obtained from;
     22 
     23 http://www.sqlite.org/download.html
     24 
     25 note that this binary was built with version 3.5.9 (earlier and
     26 later version 3.5 driver .dll's may work.)
     27 
     28 The Oracle Instant Client - Basic driver can be obtained from
     29 
     30 http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/winsoft.html
     31 
     32 and note that this binary was built against version 11.1.0.6.0,
     33 other version 11.1 drivers may work.
     34 
     35 The PostgreSQL binaries may be obtained from
     36 
     37 http://www.postgresql.org/ftp/binary/v8.3.1/win32/
     38 
     39 and note that this binary was built against version 8.3.1-1, and
     40 again it may work with other 8.1 version .dll's.
     41 
     42 For whichever database backend you configure, the corresponding driver
     43 .dll's must be in your PATH (and in the systemwide path if used for 
     44 a service such as Apache httpd).
     45 

README.chromium

      1 Name: Apache2 (+ PHP)
      2 Short Name: httpd
      3 URL: http://www.apache.org
      4 Version: 2.2.25
      5 Security Critical: no
      6 License: Apache Version 2.0
      7 License File: NOT_SHIPPED
      8 
      9 Description:
     10 
     11 This is a checked-in copy of Apache 2.2.25 for Win 32.
     12 
     13 It is used by the Blink layout tests.
     14 
     15 To recreate this directory (assuming an msys bash shell; adjust your
     16 checkout path from /d/src/checkout/src as needed): 
     17 
     18   % cd /d/src/checkout/src/third_party
     19   % mv apache-win32 apache-win32.bak
     20   % curl -o httpd.msi http://www.apache.org/dist/httpd/binaries/win32/httpd-2.2.25-win32-x86-openssl-0.9.8y.msi
     21   % cmd
     22   > start /wait msiexec /i httpd.msi /q INSTALLDIR=d:\src\checkout\src\third_party\apache-win32
     23   > exit
     24   # stop running apache processes if the installer started them.
     25   % cp -p apache-win32.bak/README.chromium apache-win32
     26   % cp -p apache-win32.bak/remove_files_not_needed_for_chromium.sh apache-win32
     27   % mkdir php
     28   % curl -o php/php.zip http://windows.php.net/downloads/releases/archives/php-5.4.24-Win32-VC9-x86.zip
     29   % (cd php && unzip php/php.zip)
     30   % cp -p php/php5ts.dll apache-win32/bin
     31   % cp -p php/php5apache2_2.dll apache-win32/modules
     32   % (cd apache-win32 && ./remove_files_not_needed_for_chromium.sh)
     33 
     34 
     35 To upload the large files (executables, DLLs) to google storage (contact
     36 chrome-infrastructure-team@ in order to get permission to write to the
     37 chrome-apache-win32 Google Cloud Storage bucket):
     38 
     39   % find apache-win32/bin -name '*.exe' -o -name '*.dll' -o -name '*.so' | upload_to_google_storage.py --bucket chromium-apache-win32 -
     40   % find apache-win32/modules -name '*.so'  | upload_to_google_storage.py --bucket chromium-apache-win32 -
     41 
     42 To prune the files that were uploaded so that we can check in the rest:
     43 
     44   % find apache-win32/bin -name '*.exe' -o -name '*.dll' -o -name '*.so' | xargs rm
     45   % find apache-win32/modules -name '*.so' | xargs rm
     46   % git add apache-win32
     47 
     48 And, to clean up the temp files used in the above:
     49 
     50   % rm -fr httpd.msi php apache-win32.bak
     51 
     52 You might need to uninstall apache via the control panel as well.
     53 

README.txt

      1 
      2                           Apache HTTP Server
      3 
      4   What is it?
      5   -----------
      6 
      7   The Apache HTTP Server is a powerful and flexible HTTP/1.1 compliant
      8   web server.  Originally designed as a replacement for the NCSA HTTP
      9   Server, it has grown to be the most popular web server on the
     10   Internet.  As a project of the Apache Software Foundation, the
     11   developers aim to collaboratively develop and maintain a robust,
     12   commercial-grade, standards-based server with freely available
     13   source code.
     14 
     15   The Latest Version
     16   ------------------
     17 
     18   Details of the latest version can be found on the Apache HTTP
     19   server project page under <http://httpd.apache.org/>.
     20 
     21   Documentation
     22   -------------
     23 
     24   The documentation available as of the date of this release is
     25   included in HTML format in the docs/manual/ directory.  The most
     26   up-to-date documentation for the 2.2.x releases can be found at
     27   <http://httpd.apache.org/docs/2.2/>.
     28 
     29   Installation
     30   ------------
     31 
     32   Please see the file called INSTALL.  Platform specific notes can be
     33   found in README.platforms.
     34 
     35   Licensing
     36   ---------
     37 
     38   Please see the file called LICENSE.
     39 
     40   Cryptographic Software Notice
     41   -----------------------------
     42 
     43   This distribution may include software that has been designed for use
     44   with cryptographic software.  The country in which you currently reside
     45   may have restrictions on the import, possession, use, and/or re-export
     46   to another country, of encryption software.  BEFORE using any encryption
     47   software, please check your country's laws, regulations and policies
     48   concerning the import, possession, or use, and re-export of encryption
     49   software, to see if this is permitted.  See <http://www.wassenaar.org/>
     50   for more information.
     51 
     52   The U.S. Government Department of Commerce, Bureau of Industry and
     53   Security (BIS), has classified this software as Export Commodity 
     54   Control Number (ECCN) 5D002.C.1, which includes information security
     55   software using or performing cryptographic functions with asymmetric
     56   algorithms.  The form and manner of this Apache Software Foundation
     57   distribution makes it eligible for export under the License Exception
     58   ENC Technology Software Unrestricted (TSU) exception (see the BIS 
     59   Export Administration Regulations, Section 740.13) for both object 
     60   code and source code.
     61 
     62   The following provides more details on the included files that
     63   may be subject to export controls on cryptographic software:
     64 
     65     Apache httpd 2.0 and later versions include the mod_ssl module under
     66        modules/ssl/
     67     for configuring and listening to connections over SSL encrypted
     68     network sockets by performing calls to a general-purpose encryption
     69     library, such as OpenSSL or the operating system's platform-specific
     70     SSL facilities.
     71 
     72     In addition, some versions of apr-util provide an abstract interface
     73     for SSL encrypted network sockets in the files under the directory
     74        srclib/apr-util/ssl/
     75     that makes use of a general-purpose encryption library, such as
     76     OpenSSL or the operating system's platform-specific SSL facilities.
     77     Apache httpd currently does not use that apr-util interface.
     78 
     79     Some object code distributions of Apache httpd, indicated with the
     80     word "crypto" in the package name, may include object code for the
     81     OpenSSL encryption library as distributed in open source form from
     82     <http://www.openssl.org/source/>.
     83 
     84   The above files are optional and may be removed if the cryptographic
     85   functionality is not desired or needs to be excluded from redistribution.
     86   Distribution packages of Apache httpd that include the word "nossl"
     87   in the package name have been created without the above files and are
     88   therefore not subject to this notice.
     89 
     90   Contacts
     91   --------
     92 
     93      o If you want to be informed about new code releases, bug fixes,
     94        security fixes, general news and information about the Apache server
     95        subscribe to the apache-announce mailing list as described under
     96        <http://httpd.apache.org/lists.html#http-announce>
     97 
     98      o If you want freely available support for running Apache please join the
     99        Apache user community by subscribing to Users Mailing List at
    100        <http://httpd.apache.org/userslist.html> or one of the following
    101        USENET newsgroups:
    102          comp.infosystems.www.servers.unix
    103          comp.infosystems.www.servers.ms-windows
    104        Also available at: 
    105          <http://groups.google.com/groups?group=comp.infosystems.www.servers>
    106 
    107      o If you want commercial support for running Apache please contact
    108        one of the companies and contractors which are listed at
    109        <http://www.apache.org/info/support.cgi>
    110 
    111      o If you have a concrete bug report for Apache please go to the
    112        Apache Group Bug Database and submit your report:
    113        <http://httpd.apache.org/bug_report.html>
    114 
    115      o If you want to participate in actively developing Apache please
    116        subscribe to the `dev (a] httpd.apache.org' mailing list as described at
    117        <http://httpd.apache.org/lists.html#http-dev>
    118 
    119   Acknowledgments
    120   ----------------
    121 
    122   We wish to acknowledge the following copyrighted works that
    123   make up portions of the Apache software:
    124 
    125   Portions of this software were developed at the National Center
    126   for Supercomputing Applications (NCSA) at the University of
    127   Illinois at Urbana-Champaign.
    128 
    129   This software contains code derived from the RSA Data Security
    130   Inc. MD5 Message-Digest Algorithm, including various
    131   modifications by Spyglass Inc., Carnegie Mellon University, and
    132   Bell Communications Research, Inc (Bellcore).
    133 
    134   Regular expression support is provided by the PCRE library package, which
    135   is open source software, written by Philip Hazel, and copyright by the
    136   University of Cambridge, England.  The original software is available from
    137      ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
    138 
    139   Apache 2 relies heavily on the use of autoconf and libtool to provide
    140   a build environment.
    141