~simonkberg/nginx/debian-1.6.2-5

« back to all changes in this revision

Viewing changes to debian/modules/nginx-echo/util/build.sh

  • Committer: root
  • Date: 2015-01-12 11:50:11 UTC
  • Revision ID: root@server205.kberg.eu-20150112115011-jh2tdvt9ey1itt3g
import from anonscm.debian.org

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env bash
 
2
 
 
3
# this file is mostly meant to be used by the author himself.
 
4
 
 
5
root=`pwd`
 
6
version=$1
 
7
force=$2
 
8
home=~
 
9
 
 
10
  #--without-http_ssi_module \
 
11
            #--with-cc=gcc46 \
 
12
 
 
13
ngx-build $force $version \
 
14
            --with-ld-opt="-L$PCRE_LIB -Wl,-rpath,$PCRE_LIB:$LIBDRIZZLE_LIB:$LUAJIT_LIB:/usr/local/lib" \
 
15
            --with-cc-opt="-DDEBUG_MALLOC" \
 
16
            --with-http_stub_status_module \
 
17
            --without-mail_pop3_module \
 
18
            --without-mail_imap_module \
 
19
            --without-mail_smtp_module \
 
20
            --without-http_upstream_ip_hash_module \
 
21
            --without-http_empty_gif_module \
 
22
            --without-http_memcached_module \
 
23
            --without-http_referer_module \
 
24
            --without-http_autoindex_module \
 
25
            --without-http_auth_basic_module \
 
26
            --without-http_userid_module \
 
27
          --with-http_addition_module \
 
28
          --add-module=$root/../ndk-nginx-module \
 
29
          --add-module=$root/../set-misc-nginx-module \
 
30
          --add-module=$root/../eval-nginx-module \
 
31
          --add-module=$root/../xss-nginx-module \
 
32
          --add-module=$root/../rds-json-nginx-module \
 
33
          --add-module=$root/../headers-more-nginx-module \
 
34
          --add-module=$root/../lua-nginx-module \
 
35
          --add-module=$root $opts \
 
36
          --with-select_module \
 
37
          --with-poll_module \
 
38
          --with-rtsig_module \
 
39
          --with-debug || exit 1
 
40
          #--add-module=$root/../lz-session-nginx-module \
 
41
          #--add-module=$home/work/ndk \
 
42
          #--add-module=$home/work/ndk/examples/http/set_var \
 
43
          #--add-module=$root/../eval-nginx-module \
 
44
          #--add-module=/home/agentz/work/nginx_eval_module-1.0.1 \
 
45