summaryrefslogtreecommitdiff
path: root/www/nginx-devel/files/extra-patch-nginx-link-function-config
blob: 725490ef14c395ce711628b0d4e591bf5e957ccd (plain) (blame)
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
--- ../nginx-link-function-3.2.4/config.orig	2020-10-12 22:32:47.000000000 -0400
+++ ../nginx-link-function-3.2.4/config	2020-11-13 12:26:56.186032000 -0500
@@ -15,24 +15,6 @@
 #echo "#define NGINX_HTTP_HTTP_LINK_FUNC_VERSION \""$HTTP_LINK_FUNC_VERSION"\"" > $NGX_OBJS/ngx_vod_version.h
 
 
-# ngx_link_func_module headers
-# to Test this in order to share the header file to other client instead of just depend on it owns
-ngx_feature="ngx_http_link_func"
-ngx_feature_name="NGX_HAVE_HTTP_LINK_FUNC_HEADERS"
-ngx_feature_run=no
-ngx_feature_incs="#include <ngx_link_func_module.h>"
-ngx_feature_path=
-ngx_feature_libs=
-# ngx_feature_exit_if_not_found=yes
-ngx_feature_test="int ngx_link_func_module_current_version_=ngx_link_func_module_version_34;"
-. auto/feature
-
-if [ $ngx_found != yes ]; then
-echo "ngx_link_func_module.h not found or version not aligned in your system c header path, please copy latest ngx_link_func_module.h to your /usr/include or /usr/local/include or relavent header search path with read and write permission given."
-echo "e.g install -m 644 ../nginx-link-function/src/ngx_link_func_module.h /usr/local/include/"
-echo
-exit 1
-else
 cat $ngx_addon_dir/build_test_resources/sanity_test_raw_parse.t > $ngx_addon_dir/t/sanity.t
 if [ $USE_THREADS = YES ]; then
 cat $ngx_addon_dir/build_test_resources/sanity_test_aio_parse.t >> $ngx_addon_dir/t/sanity.t
@@ -42,13 +24,12 @@
 if [ $USE_THREADS = YES ]; then
 cat $ngx_addon_dir/build_test_resources/sanity_test_subrequest_aio_parse.t >> $ngx_addon_dir/t/sanity.t
 fi
-fi
 ABSOLUTE_NGX_LINKFUNC_CURRENT_PATH="$( cd "$ngx_addon_dir" ; pwd -P )"
 if [ "$NGX_SYSTEM" = "Darwin" ]; then
 clang -dynamiclib -o $ngx_addon_dir/t/liblinkfuntest.dylib -fPIC $ngx_addon_dir/build_test_resources/linkfuntest.c -Wl,-undefined,dynamic_lookup
 sed -i '' "s@NGINX_HTTP_LINK_FUNC_TEST_LIB_PATH@$ABSOLUTE_NGX_LINKFUNC_CURRENT_PATH/t/liblinkfuntest.dylib@g" $ngx_addon_dir/t/sanity.t
 else 
-if [ "$NGX_PLATFORM" != win32 ]; then
+if [ "$NGX_PLATFORM" = win32 ]; then
 cc -shared -o $ngx_addon_dir/t/liblinkfuntest.so -fPIC $ngx_addon_dir/build_test_resources/linkfuntest.c
 sed -i "s@NGINX_HTTP_LINK_FUNC_TEST_LIB_PATH@$ABSOLUTE_NGX_LINKFUNC_CURRENT_PATH/t/liblinkfuntest.so@g" $ngx_addon_dir/t/sanity.t
 fi