Skip to content

Commit

Permalink
s/CVS/git
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Mar 23, 2010
1 parent 941bb3a commit eb9ce51
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 17 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Changelog for the c-ares project

* March 23, 2010 (Daniel Stenberg)
- We switched from CVS to git. See http://github.com/bagder/c-ares

* March 5, 2010 (Daniel Stenberg)
- Daniel Johnson provided fixes for building with the clang compiler.

Expand Down
7 changes: 0 additions & 7 deletions CVS-INFO

This file was deleted.

6 changes: 3 additions & 3 deletions README.cares
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ within the curl project (hence the letter C) and it makes a nice pun. Also,
c-ares is not API compatible with ares: a new name makes that more obvious to
the public.

The full source code is available in the 'c-ares' release archives, and in the
'ares' subdir of the curl CVS source repository.
The full source code is available in the 'c-ares' release archives, and in a
git repository: http://github.com/bagder/c-ares

If you find bugs, correct flaws, have questions or have comments in general in
regard to c-ares (or by all means the original ares too), get in touch with us
Expand All @@ -35,7 +35,7 @@ The following notes apply to c-ares version 1.7.0 and later.
* The distributed ares_build.h file is generated as a copy of ares_build.h.dist
when the c-ares source code distribution archive file is originally created.

* If you check out from CVS on a non-configure platform, you must run the
* If you check out from git on a non-configure platform, you must run the
appropriate buildconf* script to set up ares_build.h and other local files
before being able of compiling the library.

Expand Down
6 changes: 3 additions & 3 deletions ares_build.h.dist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

/* $Id$ */

/* Copyright (C) 2009 by Daniel Stenberg et al
/* Copyright (C) 2009 - 2010 by Daniel Stenberg et al
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted, provided
Expand Down Expand Up @@ -65,7 +65,7 @@
* created.
*
* File ares_build.h.dist is not included in the distribution archive.
* File ares_build.h is not present in the CVS tree.
* File ares_build.h is not present in the git tree.
*
* The distributed ares_build.h file is only intended to be used on systems
* which can not run the also distributed configure script.
Expand All @@ -75,7 +75,7 @@
* and specific to the library being configured and built, which is generated
* from the ares_build.h.in template file.
*
* If you check out from CVS on a non-configure platform, you must run the
* If you check out from git on a non-configure platform, you must run the
* appropriate buildconf* script to set up ares_build.h and other local files.
*
*/
Expand Down
2 changes: 1 addition & 1 deletion ares_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
(ARES_VERSION_MINOR<<8)|\
(ARES_VERSION_PATCH))
#define ARES_VERSION_STR "1.7.1-CVS"
#define ARES_VERSION_STR "1.7.1-DEV"

#if (ARES_VERSION >= 0x010700)
# define CARES_HAVE_ARES_LIBRARY_INIT 1
Expand Down
6 changes: 3 additions & 3 deletions buildconf.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
REM
REM $Id$
REM
REM This batch file must be used to set up a CVS tree to build on
REM This batch file must be used to set up a git tree to build on
REM systems where there is no autotools support (i.e. Microsoft).
REM
REM This file is not included nor needed for c-ares' release
REM archives, neither for c-ares' daily snapshot archives.

if exist CVS-INFO goto start_doing
ECHO ERROR: This file shall only be used with a c-ares CVS tree checkout.
if exist GIT-INFO goto start_doing
ECHO ERROR: This file shall only be used with a c-ares git checkout.
goto end_all
:start_doing

Expand Down

0 comments on commit eb9ce51

Please sign in to comment.