diff options
Diffstat (limited to 'gnu/usr.bin/cvs/emx')
-rw-r--r-- | gnu/usr.bin/cvs/emx/ChangeLog | 9 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/emx/Makefile.in | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/emx/options.h | 17 |
3 files changed, 19 insertions, 9 deletions
diff --git a/gnu/usr.bin/cvs/emx/ChangeLog b/gnu/usr.bin/cvs/emx/ChangeLog index 6a5f0184e30..ad5d9629e3f 100644 --- a/gnu/usr.bin/cvs/emx/ChangeLog +++ b/gnu/usr.bin/cvs/emx/ChangeLog @@ -1,3 +1,12 @@ +1999-03-27 Jim Kingdon <http://www.cyclic.com> + + * Makefile.in (LIB_OBJECTS, LIB_SOURCES): Remove vasprintf. + +1999-02-26 Jim Kingdon <http://www.cyclic.com> + + * options.h: Make RELATIVE_REPOS the default, as in + ../src/options.h.in. + 1998-08-24 Jim Kingdon <kingdon@harvey.cyclic.com> * Makefile.in (rcscmds.o): New rule, so we can supply -I for diff --git a/gnu/usr.bin/cvs/emx/Makefile.in b/gnu/usr.bin/cvs/emx/Makefile.in index f76368d1d5d..d475085f2a9 100644 --- a/gnu/usr.bin/cvs/emx/Makefile.in +++ b/gnu/usr.bin/cvs/emx/Makefile.in @@ -146,7 +146,6 @@ DIFF_SOURCES = \ # sources from ../lib # FIXME: Is this used anywhere? I don't think it is. LIB_SOURCES = \ - ${lib_dir}/vasprintf.c \ ${lib_dir}/argmatch.c \ ${lib_dir}/getline.c \ ${lib_dir}/getopt.c \ @@ -242,7 +241,6 @@ DIFF_OBJECTS = \ # objects from ../lib LIB_OBJECTS = \ - ${lib_dir}/vasprintf.o \ ${lib_dir}/argmatch.o \ ${lib_dir}/getline.o \ ${lib_dir}/getopt.o \ diff --git a/gnu/usr.bin/cvs/emx/options.h b/gnu/usr.bin/cvs/emx/options.h index c247ccb155c..99b4f9d4426 100644 --- a/gnu/usr.bin/cvs/emx/options.h +++ b/gnu/usr.bin/cvs/emx/options.h @@ -84,15 +84,18 @@ * source repository that contains the RCS ,v files for each CVS * working directory. This path is either a full-path or a path * relative to CVSROOT. - * - * The only advantage that I can see to having a relative path is that + * + * The big advantage that I can see to having a relative path is that * one can change the physical location of the master source - * repository, change one's CVSROOT environment variable, and CVS will - * work without problems. I recommend using full-paths. + * repository, change the contents of CVS/Root files in your + * checked-out code, and CVS will work without problems. + * + * Therefore, RELATIVE_REPOS is now the default. In the future, this + * is likely to disappear entirely as a compile-time (or other) option, + * so if you have other software which relies on absolute pathnames, + * update them. */ -#ifndef RELATIVE_REPOS -/* #define RELATIVE_REPOS */ -#endif +#define RELATIVE_REPOS 1 /* * When committing or importing files, you must enter a log message. |