This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

make --without-cvs the default



I propose to add the following patch to glibc.  It makes --without-cvs
the default and therefore life easier for all non-developers - and
harder for those few developers that like to have *automatic* checkin
(I also use without-cvs because I don't like automatic checkin of
changes).

Ok to commit (with a regenerated configure)?

Andreas

2000-11-01  Andreas Jaeger  <aj@suse.de>

	* configure.in: Make --without-cvs the default.

============================================================
Index: configure.in
--- configure.in	2000/10/15 06:43:13	1.292
+++ configure.in	2000/11/01 09:38:42
@@ -66,8 +66,8 @@
   --with-elf		  if using the ELF object format,
 	    elf=$withval, elf=no)
 AC_ARG_WITH(cvs, dnl
-[  --without-cvs	  if CVS should not be used],
-	    with_cvs=$withval, with_cvs=yes)
+[  --with-cvs	  if CVS should be used automatically],
+	    with_cvs=$withval, with_cvs=no)
 AC_SUBST(with_cvs)
 
 AC_ARG_WITH(headers, dnl

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de
    http://www.suse.de/~aj

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]