You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by co...@apache.org on 2023/01/23 18:47:37 UTC

svn commit: r1906959 - in /apr/apr-util/branches/1.6.x: ./ configure.in

Author: covener
Date: Mon Jan 23 18:47:37 2023
New Revision: 1906959

URL: http://svn.apache.org/viewvc?rev=1906959&view=rev
Log:
Merge r1906958 from 1.8.x:

avoid "none required" added to LDFLAGS


Modified:
    apr/apr-util/branches/1.6.x/   (props changed)
    apr/apr-util/branches/1.6.x/configure.in

Propchange: apr/apr-util/branches/1.6.x/
------------------------------------------------------------------------------
  Merged /apr/apr-util/branches/1.7.x:r1906958

Modified: apr/apr-util/branches/1.6.x/configure.in
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.6.x/configure.in?rev=1906959&r1=1906958&r2=1906959&view=diff
==============================================================================
--- apr/apr-util/branches/1.6.x/configure.in (original)
+++ apr/apr-util/branches/1.6.x/configure.in Mon Jan 23 18:47:37 2023
@@ -177,11 +177,11 @@ APU_CHECK_UTIL_DSO
 
 AC_SEARCH_LIBS(crypt, crypt ufc)
 case "$ac_cv_search_crypt" in
+"no"|"none required")
+    ;;
 *)
     APR_ADDTO(APRUTIL_LIBS, [$ac_cv_search_crypt])
     ;;
-"no"|"none required")
-    ;;
 esac
 AC_MSG_CHECKING(if system crypt() function is threadsafe)
 if test "x$apu_crypt_threadsafe" = "x1"; then