home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / rcs57pc3.zip / rcs / INSTALL.RCS < prev    next >
Text File  |  1995-06-16  |  15KB  |  352 lines

  1. Installation instructions specific to RCS
  2.  
  3.     $Id: INSTALL.RCS,v 1.14 1995/06/16 06:19:24 eggert Exp $
  4.  
  5.     Copyright 1991, 1992, 1993, 1994, 1995 Paul Eggert
  6.     Distributed under license by the Free Software Foundation, Inc.
  7.  
  8.     This file is part of RCS.
  9.  
  10.     RCS is free software; you can redistribute it and/or modify it
  11.     under the terms of the GNU General Public License as published
  12.     by the Free Software Foundation; either version 2, or (at your
  13.     option) any later version.
  14.  
  15.     RCS is distributed in the hope that it will be useful, but
  16.     WITHOUT ANY WARRANTY; without even the implied warranty of
  17.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.     GNU General Public License for more details.
  19.  
  20.     You should have received a copy of the GNU General Public License
  21.     along with RCS; see the file COPYING.
  22.     If not, write to the Free Software Foundation,
  23.     59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  24.  
  25.     Report problems and direct all questions to:
  26.  
  27.         rcs-bugs@cs.purdue.edu
  28.  
  29. __________
  30.  
  31. This file contains installation instructions specific to RCS.
  32. Please see the file INSTALL for generic installation instructions.
  33.  
  34.  
  35. __________
  36.  
  37. Prerequisites and compatibility issues
  38.  
  39. RCS requires a diff that supports the -n option.
  40. Get GNU diffutils (version 2.7 or later) if your diff lacks -n.
  41.  
  42. RCS works best with a diff that supports -a and -L,
  43. and a diff3 that supports -A, -E and -m.
  44. GNU diffutils supports these options.
  45.  
  46. RCS version 5 reads RCS files written by any RCS version released since 1982.
  47. It also writes RCS files that these older versions of RCS can read,
  48. unless you use one of the following new features:
  49.  
  50.     checkin dates after 1999-12-31
  51.     checking in non-text files
  52.     identifiers containing `.' or non-Ascii bytes, or starting with a digit
  53.     rcs -bX, where X is nonempty
  54.     rcs -kX, where X is not `kv'
  55.     RCS files that exceed hardcoded limits in older RCS versions
  56.  
  57. A working file written by RCS 5.5 or later contains four-digit years in its
  58. keyword strings.  If you check out a working file with RCS 5.5 or later,
  59. an older RCS version's `ci -k' may insist on two-digit years.
  60. Similarly, a working file written with -zZONE contains times
  61. in its keyword strings that older `ci -k's may not understand.
  62. Work around this with `co -V4 -z', or edit the working file.
  63.  
  64. RCS should run on any host that conforms to the Posix 1003.1-1990 standard.
  65. It also runs on a wide variety of non-Posix hosts.
  66.  
  67.  
  68. __________
  69.  
  70. Configuration and installation
  71.  
  72. See INSTALL for general instructions on configuring and building RCS.
  73. RCS's `configure' script has the option `--with-diffutils',
  74. and is affected by environment variables;
  75. see `Configuration environment' below.
  76.  
  77. If your system type is in the following list,
  78. look for the corresponding strings in the notes below before configuring.
  79.  
  80.     system type - identifiers
  81.     ------------------------
  82.     AIX 3.2 - --prefix=/usr has_seteuid
  83.     GCC 2.5.8 Intel x86 - CFLAGS
  84.     HP/Apollo DomainOS - has_vfork
  85.     HP-UX 8.07 and 9.* - has_mmap
  86.     Solaris 2.4 - has_mmap
  87.     SCO Unix V.3.2 - has_rename
  88.     Ultrix - has_seteuid
  89.  
  90. RCS configuration is a two-step process:
  91. general configuration as described in INSTALL,
  92. and the build of src/conf.h, which is done by `make'.
  93. The second step runs several test programs, so if you are cross-compiling,
  94. create a src/conf.h appropriate for the target host before invoking `make'.
  95.  
  96. If making src/conf.h fails, look in src/conf.err to see what went wrong.
  97. Check the resulting src/conf.h for plausibility,
  98. e.g. by running `diff src/conf.heg src/conf.h'; see ``src/conf.h notes'' below.
  99. If src/conf.h is wrong, and the mistake isn't listed in ``src/conf.h notes'',
  100. there is a bug in src/conf.sh; please report it.
  101. You can patch src/conf.h if you're in a hurry, but it's better to fix it;
  102. look at src/a.h and src/conf.err for ideas.
  103. If all else fails, copy src/conf.heg to src/conf.h and edit it by hand.
  104.  
  105. If installation succeeds, make `installcheck';
  106. if this fails, make `installdebug' for detailed info.
  107.  
  108. If you want to test RCS before installing it,
  109. build it from scratch with `cd src; make RCSPREFIX= bindir=. installcheck'.
  110. Be sure rebuild RCS without these options before actually installing it.
  111.  
  112. If you want to maintain RCS with itself,
  113. preserve the original revision numbers, dates, etc.
  114. by checking the files in with the -k option.
  115.  
  116.  
  117. ----
  118.  
  119. Configuration note
  120.  
  121. Do not configure with --prefix=/ or --prefix=/usr in AIX.
  122. An AIX boot shell script (/etc/rc.boot4 in AIX 3.2) invokes `merge',
  123. meaning /etc/merge, and fails if RCS merge is installed in /bin or /usr/bin.
  124. IBM says that installing new programs into /usr/bin is a customer error (!).
  125.  
  126.  
  127. __________
  128.  
  129. Configuration environment
  130.  
  131. The configuration procedure normally inspects the current host
  132. to determine how RCS is to be built.
  133. The environment variables listed in this section override this default.
  134. If you configure with the option `--with-diffutils',
  135. unset environment variables whose names start with `DIFF'
  136. are assumed to have values appropriate for a GNU diffutils
  137. installed into the same location as RCS;
  138. this is a recommended configuration.
  139.  
  140. CC is the name of your C compiler.
  141.  
  142. CPPFLAGS are C preprocessor options.
  143.  
  144. CFLAGS are C compiler options that do not affect correctness,
  145. typically options that affect optimization or debugging.
  146. Omit -O if your compiler's optimizer is not trustworthy (e.g. GCC 2.5.8 x86).
  147. If your ancient BSD compiler has the -R option, -R can improve performance by
  148. making all initialized data read-only (not just string literals);
  149. modern compilers don't need this, since they have `const'.
  150.  
  151. DIFF is the name of your diff program.
  152. It's normally best to use GNU diffutils.
  153. If DIFF is not an absolute pathname, setuid execution cannot be used,
  154. and execution may be a bit slower.
  155. If you change DIFF after starting a build,
  156. make sure you rebuild conf.h afterwards;
  157. otherwise you may introduce a security hole.
  158. On some versions of Unix, the standard diff does not support RCS
  159. and you must instead use diffutils, or something like /usr/lib/rdiff.
  160.  
  161. DIFFFLAGS are diff's options for RCS format output, probably -n.
  162. If available, also include the -a option for comparing arbitrary files.
  163.  
  164. DIFF_L is 1 if diff and diff3 understand the -L LABEL option
  165. for labeling context diff output, 0 otherwise.
  166. This option was introduced with GNU diffutils 2.1.
  167.  
  168. DIFF_SUCCESS, DIFF_FAILURE, and DIFF_TROUBLE are integer constants
  169. representing diff's exit status when it finds
  170. no differences, some differences, or trouble respectively.
  171. The first two should be <stdlib.h>'s EXIT_SUCCESS and EXIT_FAILURE
  172. but this doesn't work on some broken hosts.
  173.  
  174. DIFF3 is the name of the diff3 program.
  175. With GNU diffutils, this is simply its user-visible diff3 program.
  176. But with traditional diff3 it is the name of the undocumented diff3 auxiliary,
  177. whose name is /usr/lib/diff3 or /usr/5lib/rdiff3prog or something similar.
  178.  
  179. DIFF3_BIN is 1 if DIFF3 is the user-visible GNU diff3 program (see DIFF3).
  180. Before setting this to 1, make sure your diff3 understands -a, -L, and and -m;
  181. e.g. the command `echo x | diff3 -m -L 0 -L 1 -L 2 /dev/null /dev/null -'
  182. should output `x'.
  183.  
  184. ED is the name of the standard Unix line editor.
  185. It is used only if DIFF3_BIN is 0.
  186.  
  187. INSTALL is the command that installs commands, e.g. `../install-sh'.
  188. INSTALL_DATA installs data, and
  189. INSTALL_PROGRAM installs programs.
  190.  
  191. PIC is the name of your pic program, configured to avoid extensions
  192. so that a portable man page is generated.
  193. This is typically GNU pic with the `-n' option,
  194. or traditional pic with `-D'.
  195. It is used only if you edit the documentation or make `maintainer-clean'.
  196.  
  197. prefix and exec_prefix establish the binary installation directory;
  198. they are affected by the --prefix and --exec-prefix option of `configure'.
  199.  
  200. SENDMAIL is a comma-separated list of strings (using C syntax)
  201. that are a command to send mail.
  202. The name of the addressee will be appended as a separate argument,
  203. and the standard input will be the message
  204. (first line `Subject: xxxx', second line empty).
  205. If your host cannot send mail, leave SENDMAIL empty.
  206.  
  207.  
  208. __________
  209.  
  210. src/Makefile notes
  211.  
  212. Many of the src/Makefile variables are set by `configure' as described above.
  213. The notes below describe variables that may need to be edited by hand
  214. in unusual installations.
  215.  
  216. ALL_CFLAGS are all the options passed to the C compiler.
  217.  
  218. COMPAT2 is 1 if you still have version 2 RCS files around.
  219. (Version 2 became obsolete in 1982, so this isn't likely.)
  220. COMPAT2 assures that version 2 RCS files can still be read.
  221. When you have the new RCS installed, rename old version 2 RCS files as follows.
  222. Suppose the working file was `f.c';
  223. rename the RCS file `f.c.v' to `f.c,v', and the RCS file `f.v' to `f.c,v'.
  224. Thus suffixes are no longer dropped and RCS files end in `,v' rather than `.v'.
  225. After all version 2 RCS files have been updated with new versions of ci or rcs,
  226. you can remake RCS with COMPAT2 set to 0.
  227.  
  228. DEFS are configuration options for the C preprocessor.
  229. It should include any extra -D and -I options needed on your system.
  230.  
  231. LDFLAGS are the loader flags you need, e.g. -i, -n, -s, -x.
  232.  
  233. LIBOBJS are any other object files you need to link.
  234.  
  235. LIBS are the loader libraries you need, e.g. -lbsd, -lBSD, -ljobs, -lPW, -lx.
  236.  
  237. LINK is the command used to link together an executable.
  238.  
  239. LINT is the name and usual arguments of your lint program.
  240.  
  241. RCSPREFIX is the prefix for subsidiary RCS commands like ci.
  242. If empty, RCS will search the PATH for these commands;
  243. this lets you move RCS commands after building them, and permits
  244. multiple instances of setuid RCS commands on the same host for different users.
  245. If nonempty, it should be a path followed by /;
  246. this makes RCS look in just one place, and makes execution faster.
  247.  
  248. REMOVE is how to remove a file.
  249.  
  250. o is the filename extension your host uses for object files.
  251. It includes the `.'.  It is typically `.o' on Unix hosts.
  252.  
  253. x is the filename extension your host uses for executables.
  254. It includes any `.'.  It is empty on Unix hosts,
  255. which traditionally lack extensions on executables.
  256.  
  257.  
  258. __________
  259.  
  260. src/conf.h notes
  261.  
  262. See src/conf.sh for details about the definitions in src/conf.h.
  263. Comments below cover unusual situations requiring hand patches to src/conf.h.
  264.  
  265. bad_NFS_rename - Some buggy NFS file servers (e.g. some NAC releases)
  266. can report that rename(A,B) succeeded even though it failed.
  267. Set bad_NFS_rename to nonzero to work around the problem.
  268. Warning: the workaround introduces a rare race condition
  269. that can falsely report I/O errors;
  270. this is why the workaround is disabled unless you specify otherwise.
  271.  
  272. const - Some hosts support `const' but complain about it, perhaps because
  273. system headers are wrong.  If you can't stand the complaints,
  274. try `#define const /*empty*/'.
  275.  
  276. has_mmap - For speed, RCS uses the `mmap' system call
  277. if it is available and the Mach `map_fd' system call is not.
  278. Unfortunately, many mmap implementations are broken.
  279. src/conf.sh guesses based on tests and on mmap bugs reported by RCS users;
  280. you may want to double-check its results.
  281. For instance, mmap does not work properly in HP-UX 8 or 9, or in Solaris 2.4,
  282. without kernel patches; see src/conf.sh for details.
  283. We don't know details about the bugs, so we can't test for them automatically.
  284.  
  285. has_NFS - Set this if the target host might use NFS.
  286. NFS's ``stateless server'' protocol has well-known problems with
  287. the non-idempotent operations link(), rename(), and unlink().
  288. For example, unlink() can run twice on the NFS server,
  289. causing the client to think that the unlink failed with errno==ENOENT.
  290. has_NFS enables code that works around these problems.
  291. However, has_NFS does not work around NFS implementation bugs;
  292. if your NFS implementation is buggy, get another!
  293. For example, make sure that your NFS uses UDP checksums, if it uses UDP.
  294. Modern systems checksum by default; ask your vendor if you're not sure.
  295.  
  296. has_rename - This should be 0 in SCO Unix V.3.2.  Its NFS rename() is broken,
  297. but if you run src/conf.sh in a non-NFS filesystem, it thinks rename() works.
  298.  
  299. has_seteuid - You have to worry about this only if you plan to run RCS setuid.
  300. has_seteuid should be 1 only if your seteuid lets you switch back and
  301. forth between any pair of users as specified in Posix 1003.1a Draft 5.
  302. On some older systems (e.g. SunOS 3.5) seteuid doesn't allow this.
  303. One must be root to test this reliably, so src/conf.sh just guesses.
  304. If has_seteuid==0, perhaps you can use setreuid instead (see below).
  305. Otherwise, the next best thing is saved setuid semantics
  306. (a Posix 1003.1-1990 option), because this fails only if you run as root.
  307. You may need to compile with `cc -systype sysv' (some Mips OS variants)
  308. or `cc -YPOSIX' (some Ultrix variants) for best results here.
  309. Don't run RCS setuid under AIX 3.2 if you use NFS, since it's badly broken.
  310. To see the AIX 3.2 bug, run the following program setuid X where the NFS file
  311. "abc" already exists, owned by X, permission -rw-r--r--, and where
  312. the invoker is not X.  The program fails with "fclose: Permission denied".
  313.     #include <stdio.h>
  314.     int main() {
  315.          FILE *f = fopen("abc", "w");
  316.          setuid(getuid());
  317.          fputc('\n', f);
  318.          if (fclose(f) != 0)
  319.              perror("fclose");
  320.     }
  321.  
  322. has_setreuid - You have to worry about this only if you plan to run RCS setuid
  323. and if has_seteuid==0.  On some older BSDish systems, the setreuid system
  324. call lets you swap real and effective users even if one of them is root.
  325. One must be root to test this reliably, so src/conf.sh always guesses that
  326. it doesn't work.  Set it to 1 by hand if you know that it works.
  327.  
  328. has_vfork - This should be 0 in some variants of HP/Apollo DomainOS.
  329. (The `uname -a' command reported `10.3.5 sys5.3' on one such variant.)
  330. Its vfork causes a system crash; you'll have to change src/conf.sh to output
  331. `#define has_vfork 0' without actually trying vfork.
  332.  
  333. large_memory - This should be 1 if main memory is large enough to hold entire
  334. copies of RCS files, perhaps because virtual memory is available.
  335.  
  336. _POSIX_SOURCE must be #defined in a strict Standard C environment,
  337. because otherwise <stdio.h> cannot define useful identifiers like fileno.
  338. Avoid defining _POSIX_SOURCE if possible,
  339. because it can disable useful non-Posix features in your host.
  340. Perhaps you can remove the need for _POSIX_SOURCE
  341. by supplying an option to your compiler to makes it less strict.
  342. You may also have to pay attention to other symbols, e.g. _XOPEN_SOURCE.
  343.  
  344. TZ_must_be_set - set this to 1 on hosts where gmtime() yields bogus
  345. values unless the TZ environment variable is set.
  346.  
  347. volatile - See `const'.  E.g. `volatile sig_atomic_t' is conforming, but some
  348. buggy hosts complain.  Also, Ultrix 4.0 Mips CC 2.0 has buggy volatile support.
  349.  
  350. X_DEFAULT - This is normally ",v/" on Unix hosts, and "" on hosts that
  351. do not allow commas in file names (e.g. DOS).
  352.