ap_release.h revision f99bffd6087564cf9c05cc29d1c6b38d94e0ed30
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers/* ====================================================================
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * The Apache Software License, Version 1.1
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers *
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * Copyright (c) 2000-2001 The Apache Software Foundation. All rights
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * reserved.
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers *
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * Redistribution and use in source and binary forms, with or without
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * modification, are permitted provided that the following conditions
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * are met:
0f59fe5171b5564fc6fb58f3281fbc259c45f7d0Kay Sievers *
0f59fe5171b5564fc6fb58f3281fbc259c45f7d0Kay Sievers * 1. Redistributions of source code must retain the above copyright
0f59fe5171b5564fc6fb58f3281fbc259c45f7d0Kay Sievers * notice, this list of conditions and the following disclaimer.
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers *
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * 2. Redistributions in binary form must reproduce the above copyright
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * notice, this list of conditions and the following disclaimer in
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * the documentation and/or other materials provided with the
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * distribution.
1836bf9e1d70240c8079e4db4312309f4f1f91fdLennart Poettering *
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * 3. The end-user documentation included with the redistribution,
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * if any, must include the following acknowledgment:
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * "This product includes software developed by the
1836bf9e1d70240c8079e4db4312309f4f1f91fdLennart Poettering * Apache Software Foundation (http://www.apache.org/)."
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * Alternately, this acknowledgment may appear in the software itself,
ad8bc9ea508740074cead005aa3cfd1ba10a5dacTom Gundersen * if and wherever such third-party acknowledgments normally appear.
ad8bc9ea508740074cead005aa3cfd1ba10a5dacTom Gundersen *
1836bf9e1d70240c8079e4db4312309f4f1f91fdLennart Poettering * 4. The names "Apache" and "Apache Software Foundation" must
ad8bc9ea508740074cead005aa3cfd1ba10a5dacTom Gundersen * not be used to endorse or promote products derived from this
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * software without prior written permission. For written
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers * permission, please contact apache@apache.org.
8f27a2212ee8d6311c88ef4358953ad0d7bfa851Kay Sievers *
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
* Portions of this software are based upon public domain software
* originally written at the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign.
*/
#ifndef AP_RELEASE_H
#define AP_RELEASE_H
/*
* The below defines the base string of the Server: header. Additional
* tokens can be added via the ap_add_version_component() API call.
*
* The tokens are listed in order of their significance for identifying the
* application.
*
* "Product tokens should be short and to the point -- use of them for
* advertizing or other non-essential information is explicitly forbidden."
*
* Example: "Apache/1.1.0 MrWidget/0.1-alpha"
*/
#define AP_SERVER_BASEVENDOR "Apache Software Foundation"
#define AP_SERVER_BASEPRODUCT "Apache"
#define AP_SERVER_BASEREVISION "2.0.29-dev"
#define AP_SERVER_BASEVERSION AP_SERVER_BASEPRODUCT "/" AP_SERVER_BASEREVISION
#define AP_SERVER_VERSION AP_SERVER_BASEVERSION
#endif