You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2011/04/17 14:54:35 UTC

svn commit: r1094141 - /apr/apr/trunk/configure.in

Author: trawick
Date: Sun Apr 17 12:54:35 2011
New Revision: 1094141

URL: http://svn.apache.org/viewvc?rev=1094141&view=rev
Log:
indentation fix

Modified:
    apr/apr/trunk/configure.in

Modified: apr/apr/trunk/configure.in
URL: http://svn.apache.org/viewvc/apr/apr/trunk/configure.in?rev=1094141&r1=1094140&r2=1094141&view=diff
==============================================================================
--- apr/apr/trunk/configure.in (original)
+++ apr/apr/trunk/configure.in Sun Apr 17 12:54:35 2011
@@ -447,19 +447,18 @@ case "$host:$CC" in
 	APR_SETVAR(AR,ar)
 	;;
 
-dnl If building static APR, both the APR build and the app build
-dnl need -DAPR_DECLARE_STATIC to generate the right linkage from    
-dnl APR_DECLARE et al.
-dnl If building dynamic APR, the APR build needs APR_DECLARE_EXPORT
-dnl and the app build should have neither define.
-
+    dnl If building static APR, both the APR build and the app build
+    dnl need -DAPR_DECLARE_STATIC to generate the right linkage from    
+    dnl APR_DECLARE et al.
+    dnl If building dynamic APR, the APR build needs APR_DECLARE_EXPORT
+    dnl and the app build should have neither define.
     *-mingw* | *-cygwin*)
-    if test "$enable_shared" = "yes"; then
-        APR_ADDTO(INTERNAL_CPPFLAGS, -DAPR_DECLARE_EXPORT)
-    else
-        APR_ADDTO(CPPFLAGS, -DAPR_DECLARE_STATIC)
-    fi
-    ;;
+        if test "$enable_shared" = "yes"; then
+            APR_ADDTO(INTERNAL_CPPFLAGS, -DAPR_DECLARE_EXPORT)
+        else
+            APR_ADDTO(CPPFLAGS, -DAPR_DECLARE_STATIC)
+        fi
+        ;;
 esac
 
 AC_CACHE_CHECK([whether the compiler provides atomic builtins], [ap_cv_atomic_builtins],