5d98a43e7e
- update to 2.26 (bnc#894285) Ignore ECONNABORTED on accept(). Correctly implemented the config-file option change from "nosymlink" to "nosymlinkcheck", which was supposedly done in version 2.24. Removed mailto: link from default index page. Allow CGIs to provide both Location and Status headers. Better logic for figuring out CGI SERVER_NAME environment variable. Updated for clang, and general cleanup. - dropped thttpd-2.25b-getline.patch (upstream) - added thttpd-crypt_is_in_crypt.h.patch OBS-URL: https://build.opensuse.org/request/show/247376 OBS-URL: https://build.opensuse.org/package/show/server:http/thttpd?expand=0&rev=24
40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
Index: configure.in
|
|
===================================================================
|
|
--- configure.in.orig 2014-09-03 09:46:46.273266534 +0200
|
|
+++ configure.in 2014-09-03 09:46:46.300266836 +0200
|
|
@@ -24,34 +24,6 @@ if test -f .devel ; then
|
|
V_CCOPT="-g $V_CCOPT -ansi -pedantic -U__STRICT_ANSI__ -Wall -Wpointer-arith -Wshadow -Wcast-qual -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wno-long-long"
|
|
fi
|
|
|
|
-dnl
|
|
-dnl maybe this should be a loop
|
|
-dnl
|
|
-AC_MSG_CHECKING(how to link static binaries)
|
|
-AC_CACHE_VAL(ac_cv_lbl_static_flag,
|
|
- ac_cv_lbl_static_flag=unknown
|
|
- echo 'main() {}' > conftest.c
|
|
- if test "$GCC" != yes ; then
|
|
- trial_flag="-Bstatic"
|
|
- test=`$CC $trial_flag -o conftest conftest.c 2>&1`
|
|
- if test -z "$test" ; then
|
|
- ac_cv_lbl_static_flag="$trial_flag"
|
|
- fi
|
|
- rm -f conftest
|
|
- fi
|
|
- if test "$ac_cv_lbl_static_flag" = unknown ; then
|
|
- trial_flag="-static"
|
|
- test=`$CC $trial_flag -o conftest conftest.c 2>&1`
|
|
- if test -z "$test" ; then
|
|
- ac_cv_lbl_static_flag="$trial_flag"
|
|
- fi
|
|
- rm -f conftest
|
|
- fi
|
|
- rm conftest.c)
|
|
-AC_MSG_RESULT($ac_cv_lbl_static_flag)
|
|
-if test "$ac_cv_lbl_static_flag" != unknown ; then
|
|
- V_STATICFLAG="$ac_cv_lbl_static_flag"
|
|
-fi
|
|
|
|
AC_MSG_CHECKING(for __progname)
|
|
AC_CACHE_VAL(ac_cv_extern__progname,
|