guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core configure.in


From: Marius Vollmer
Subject: guile/guile-core configure.in
Date: Sat, 05 May 2001 12:15:52 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Marius Vollmer <address@hidden> 01/05/05 12:15:52

Modified files:
        guile-core     : configure.in 

Log message:
        (--enable-deprecated): Recognize "shutup" option
        argument and turn it into the default warning level "no".

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/configure.in.diff?cvsroot=OldCVS&tr1=1.142&tr2=1.143&r1=text&r2=text

Patches:
Index: guile/guile-core/configure.in
diff -u guile/guile-core/configure.in:1.142 guile/guile-core/configure.in:1.143
--- guile/guile-core/configure.in:1.142 Sat May  5 01:41:01 2001
+++ guile/guile-core/configure.in       Sat May  5 12:15:52 2001
@@ -103,9 +103,13 @@
   AC_DEFINE(SCM_DEBUG_DEPRECATED)
 else
   if test "$enable_deprecated" = yes || test "$enable_deprecated" = ""; then
-    enable_deprecated=summary
+    warn_default=summary
+  elif test "$enable_deprecated" = shutup; then
+    warn_default=no
+  else
+    warn_default=$enable_deprecated
   fi
-  AC_DEFINE_UNQUOTED(GUILE_WARN_DEPRECATED_DEFAULT, "$enable_deprecated")
+  AC_DEFINE_UNQUOTED(GUILE_WARN_DEPRECATED_DEFAULT, "$warn_default")
 fi
 
 dnl The --disable-debug used to control these two.  But now they are



reply via email to

[Prev in Thread] Current Thread [Next in Thread]