~ubuntu-branches/ubuntu/wily/nginx/wily

« back to all changes in this revision

Viewing changes to src/core/nginx.h

  • Committer: Package Import Robot
  • Author(s): Thomas Ward
  • Date: 2015-07-22 11:39:44 UTC
  • mfrom: (4.3.25 sid)
  • Revision ID: package-import@ubuntu.com-20150722113944-lrmrnya8cg40kz4m
Tags: 1.9.3-1ubuntu1
* Merge from Debian.  Remaining changes: (LP: #1476811)
  - debian/patches/ubuntu-branding.patch: add Ubuntu branding (refreshed)
  - d/{control,rules,nginx-core.*}: add new binary package for main,
    nginx-core, which contains only source-tarball-included modules
    and no third-party modules.
  - debian/tests/control: add nginx-core test.
  - debian/control: drop luajit from Build-Depends as it is in universe.
  - debian/apport/source_nginx.py: Add apport hooks for additional bug
    information gathering.
  - debian/nginx-common.install: Add install rule for apport hooks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#define _NGINX_H_INCLUDED_
10
10
 
11
11
 
12
 
#define nginx_version      1006002
13
 
#define NGINX_VERSION      "1.6.2"
 
12
#define nginx_version      1009003
 
13
#define NGINX_VERSION      "1.9.3"
14
14
#define NGINX_VER          "nginx/" NGINX_VERSION " (Ubuntu)"
15
15
 
 
16
#ifdef NGX_BUILD
 
17
#define NGINX_VER_BUILD    NGINX_VER " (" NGX_BUILD ")"
 
18
#else
 
19
#define NGINX_VER_BUILD    NGINX_VER
 
20
#endif
 
21
 
16
22
#define NGINX_VAR          "NGINX"
17
23
#define NGX_OLDPID_EXT     ".oldbin"
18
24