home *** CD-ROM | disk | FTP | other *** search
- head 5.64;
- branch 5.64.0;
- access;
- symbols
- RELEASE:5.64.0.6
- BETA:5.64.0.6
- UICSO:5.64.0
- VANILLA:5.64;
- locks; strict;
- comment @ * @;
-
-
- 5.64
- date 90.06.20.09.16.05; author paul; state Exp;
- branches
- 5.64.0.1;
- next ;
-
- 5.64.0.1
- date 90.06.20.09.44.21; author paul; state Exp;
- branches;
- next 5.64.0.2;
-
- 5.64.0.2
- date 90.10.01.23.08.42; author paul; state Exp;
- branches;
- next 5.64.0.3;
-
- 5.64.0.3
- date 90.12.13.20.13.04; author paul; state Exp;
- branches;
- next 5.64.0.4;
-
- 5.64.0.4
- date 91.02.17.23.52.36; author paul; state Exp;
- branches;
- next 5.64.0.5;
-
- 5.64.0.5
- date 91.04.05.13.50.52; author paul; state Exp;
- branches;
- next 5.64.0.6;
-
- 5.64.0.6
- date 91.04.05.14.55.15; author paul; state Exp;
- branches;
- next ;
-
-
- desc
- @@
-
-
-
- 5.64
- log
- @*** empty log message ***
- @
- text
- @/*
- * Copyright (c) 1983 Eric P. Allman
- * Copyright (c) 1988 Regents of the University of California.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms are permitted provided
- * that: (1) source distributions retain this entire copyright notice and
- * comment, and (2) distributions including binaries display the following
- * acknowledgement: ``This product includes software developed by the
- * University of California, Berkeley and its contributors'' in the
- * documentation or other materials provided with the distribution and in
- * all advertising materials mentioning features or use of this software.
- * Neither the name of the University nor the names of its contributors may
- * be used to endorse or promote products derived from this software without
- * specific prior written permission.
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
- * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- */
-
- #ifndef lint
- static char sccsid[] = "@@(#)version.c 5.64 (Berkeley) 6/1/90";
- #endif /* not lint */
-
- char Version[] = "5.64";
- @
-
-
- 5.64.0.1
- log
- @IDA patches
- @
- text
- @d25 1
- a25 1
- char Version[] = "5.64+";
- @
-
-
- 5.64.0.2
- log
- @Changes from Berkeley's 5.64 to 5.65 release (main.c, savemail.c, and
- version.c)
- @
- text
- @d22 1
- a22 1
- static char sccsid[] = "@@(#)version.c 5.65 (Berkeley) 8/29/90";
- d25 1
- a25 1
- char Version[] = "5.65+";
- @
-
-
- 5.64.0.3
- log
- @Replace character "+" in Version string with "a". If MAIL11V3 is defined,
- a "+" will be appended. The letters will be incremented with significant
- source patch.
-
- @
- text
- @d25 1
- a25 7
- #include "conf.h"
-
- #ifdef MAIL11V3
- char Version[] = "5.65a+";
- #else /* !MAIL11V3 */
- char Version[] = "5.65a";
- #endif /* MAIL11V3 */
- @
-
-
- 5.64.0.4
- log
- @ANSIfied sendmail.
- @
- text
- @d28 1
- a28 1
- char Version[] = "5.65b+";
- d30 1
- a30 1
- char Version[] = "5.65b";
- @
-
-
- 5.64.0.5
- log
- @Can now show various combinations of Mail11v3, 8bit support, and release
- version.
- @
- text
- @a26 10
- /*
- * Strings that appear in header lines should be kept short.
- *
- * Current source version: 5.65c
- * If Mail11v3 support is configured, append "+".
- * If 8-bit character set support is configured, append "8".
- * If you're right-handed and the temperature is above freezing, append xyzzy.
- * But I digress.
- */
-
- d28 1
- a28 5
- # ifdef BIT8
- char Version[] = "5.65c8+";
- # else /* !BIT8 */
- char Version[] = "5.65c+";
- # endif /* BIT8 */
- d30 1
- a30 5
- # ifdef BIT8
- char Version[] = "5.65c8";
- # else /* !BIT8 */
- char Version[] = "5.65c";
- # endif /* BIT8 */
- @
-
-
- 5.64.0.6
- log
- @Added RCS ID string
- @
- text
- @a22 1
- static char rcsid[] = "@@(#)$Id$";
- @
-