File: config

package info (click to toggle)
nginx 1.2.1-2.2%2Bwheezy4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 36,644 kB
  • sloc: ansic: 126,205; python: 1,695; sh: 1,018; perl: 523; makefile: 283; php: 122; asm: 48; ruby: 31; cpp: 17
file content (49 lines) | stat: -rw-r--r-- 1,428 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

###############
## FUNCTIONS ##
###############

# TODO : provide information about checking versions of sed etc
# TODO : an optional patch function

ndk_generate_files() {
    echo "building Nginx Development Kit utility functions and macros ..."

    autobuild="$ngx_addon_dir/auto/build"
    chmod +x $autobuild
    $autobuild `pwd` $NGX_OBJS/addon/ndk || exit 1
}

ndk_get_nginx_version() {
    # We get the Nginx version number from the string form rather than
    # nginx_version because it is available in more (every?) version

    cat src/core/nginx.h                                | 
    grep  '#define NGINX_VERSION'                       | 
    sed -r                                              \
        -e 's/[^0-9.]*([0-9.]+).*/\1/'                  \
        -e 's/([0-9]+\.[0-9]+\.)([0-9]{1})$/\100\2/'    \
        -e 's/([0-9]+\.[0-9]+\.)([0-9]{2})$/\10\2/'     \
        -e 's/\.//g'                                    \
        -e 's/^0+(.*)/\1/'
}

#####################
## CONFIG SETTINGS ##
#####################

ngx_addon_name=ngx_devel_kit
ngx_objs_dirs="$ngx_addon_dir/objs $NGX_OBJS/addon/ndk"

CORE_INCS="$CORE_INCS $ngx_objs_dirs"
HTTP_INCS="$HTTP_INCS $ngx_addon_dir/src $ngx_objs_dir"
HTTP_MODULES="$HTTP_MODULES ndk_http_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/src/ndk.c"

have=NDK . auto/have

##############
## INCLUDES ##
##############

. $ngx_addon_dir/ngx_auto_lib_core