view src/core/nginx.h @ 6934:4d874b4d82ed

Configure: fixed --without_http. Instead of turning off some randomly selected http modules when --without-http is specified, just don't process the whole http modules section.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 16 Mar 2017 20:38:31 +0300
parents f6ca2cfd79fb
children 633a36655bb6
line wrap: on
line source


/*
 * Copyright (C) Igor Sysoev
 * Copyright (C) Nginx, Inc.
 */


#ifndef _NGINX_H_INCLUDED_
#define _NGINX_H_INCLUDED_


#define nginx_version      1011011
#define NGINX_VERSION      "1.11.11"
#define NGINX_VER          "nginx/" NGINX_VERSION

#ifdef NGX_BUILD
#define NGINX_VER_BUILD    NGINX_VER " (" NGX_BUILD ")"
#else
#define NGINX_VER_BUILD    NGINX_VER
#endif

#define NGINX_VAR          "NGINX"
#define NGX_OLDPID_EXT     ".oldbin"


#endif /* _NGINX_H_INCLUDED_ */