|
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../nginx/nginx.conf
# Copyright (C) 2009 - 2010 The OpenSDE Project
# Copyright (C) 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
if [ $prefix_auto = 1 ]; then prefix="opt/nginx" set_confopt fi
cleanconfopt=0 confopt="--prefix=/$prefix"
[[ "$sysconfdir" = */$pkg ]] || sysconfdir=$sysconfdir/$pkg
var_append confopt ' ' "--conf-path=$sysconfdir/nginx.conf" # set path to nginx.pid file
var_append confopt ' ' "--pid-path=$localstatedir/run/nginx.pid" # set path to nginx.lock file
var_append confopt ' ' "--lock-path=$localstatedir/lock/nginx.lock"
# set temporary paths and files
for x in proxy fastcgi uwsgi client-body; do var_append confopt ' ' "--http-$x-temp-path=$localstatedir/temp/${x//-/_}_temp" done
# log directories
logdir="$localstatedir/log/$pkg" var_append confopt ' ' "--http-log-path=$logdir/access.log" var_append confopt ' ' "--error-log-path=$logdir/error.log"
# --with- with dependency
for x in openssl:ssl zlib:gzip_static; do if pkginstalled "${x%:*}"; then var_append confopt ' ' "--with-http_${x#*:}_module"
fi done
# --without- because of dependency
for x in pcre:http_rewrite_module openssl:http-cache uwsgi:http_uwsgi_module; do if ! pkginstalled "${x%:*}"; then var_append confopt ' ' "--without-${x#*:}"
fi done
# --with- without dependency
for x in stub_status flv realip; do var_append confopt ' ' "--with-http_${x}_module" done
# image_filter
has_all=yes for x in libgd libjpeg libpng; do if ! pkginstalled "$x"; then has_all=no break fi done if [ "$has_all" = "yes" ]; then var_append confopt ' ' "--with-http_image_filter_module" fi unset has_all
if atstage cross; then var_append configprefix ' ' 'cross_compiling=yes'
for x in int long long_long char_p:void_p int:sig_atomic_t int:size_t int:off_t int:time_t; do y=$(eval echo "\$arch_sizeof_${x%:*}") var_append configprefix ' ' "ngx_cache_sizeof_${x#*:}=$y"
done fi
var_append CC_WRAPPER_REMOVE " " "-Werror"
|