You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							72 lines
						
					
					
						
							2.4 KiB
						
					
					
				
			
		
		
	
	
							72 lines
						
					
					
						
							2.4 KiB
						
					
					
				# --- 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 path to the http proxy temporary files | 
						|
var_append confopt ' ' "--http-proxy-temp-path=$localstatedir/temp/proxy_temp" | 
						|
# set path to the http fastcgi temporary | 
						|
var_append confopt ' ' "--http-fastcgi-temp-path=$localstatedir/temp/fastcgi_temp" | 
						|
# set path to the http client request body | 
						|
var_append confopt ' ' "--http-client-body-temp-path=$localstatedir/temp/client_body_temp" | 
						|
 | 
						|
# 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 libgd:image_filter 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; 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 | 
						|
 | 
						|
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"
 | 
						|
 |