-- Rearranged directory structure; starting conversion to autoconf.

This commit is contained in:
dfs
1998-01-15 02:49:26 +00:00
parent 1ba2968df8
commit 0ff20006c7
88 changed files with 443 additions and 160 deletions

11
README Normal file
View File

@@ -0,0 +1,11 @@
REMIND
Remind is a full-featured calendar/alarm program. Copying policy is
in the file "COPYRIGHT" in this directory.
Installation notes for various operating systems are in "docs". See
the appropriate README file for installation on your system.
Manual pages are in "man".
$Id: README,v 1.1 1998-01-15 02:49:27 dfs Exp $

33
configure.in Normal file
View File

@@ -0,0 +1,33 @@
dnl Process this file with autoconf to produce a configure script.
dnl $Id: configure.in,v 1.1 1998-01-15 02:49:30 dfs Exp $
AC_INIT(src/amiga.c)
AC_CONFIG_HEADER(src/config.h)
dnl Checks for programs.
AC_PROG_AWK
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
dnl Checks for libraries.
dnl Replace `main' with a function in -lm:
AC_CHECK_LIB(m, sqrt)
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(sys/file.h sys/time.h unistd.h malloc.h stdarg.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_STRUCT_TM
dnl Checks for library functions.
AC_TYPE_SIGNAL
AC_FUNC_UTIME_NULL
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(mktime putenv strstr)
AC_OUTPUT()

View File

@@ -1,4 +1,4 @@
$Id: README.AMIGA,v 1.1 1996-03-31 04:01:52 dfs Exp $
$Id: README.AMIGA,v 1.1 1998-01-15 02:50:12 dfs Exp $
REMIND version 3.0 for AmigaDOS
REMIND is a sophisticated alarm/calendar program. Details are given

View File

@@ -1,4 +1,4 @@
$Id: README.BCC,v 1.1 1996-03-27 03:25:48 dfs Exp $
$Id: README.BCC,v 1.1 1998-01-15 02:50:13 dfs Exp $
REMIND version 3.0 for Borland C++
1 - Read the file COPYRIGHT. (This may be called COPYRIGH on your

View File

@@ -1,4 +1,4 @@
$Id: README.DOS,v 1.2 1996-10-12 02:59:06 dfs Exp $
$Id: README.DOS,v 1.1 1998-01-15 02:50:13 dfs Exp $
REMIND version 3.0 for MS-DOS
IMPORTANT NOTE: I'm no longer officially supporting Remind under

View File

@@ -1,4 +1,4 @@
$Id: README.OS2,v 1.1 1996-03-27 03:25:49 dfs Exp $
$Id: README.OS2,v 1.1 1998-01-15 02:50:14 dfs Exp $
REMIND version 3.0 for OS/2
This file contains instructions for compiling Remind under OS/2 with

View File

@@ -1,4 +1,4 @@
$Id: README.UNIX,v 1.3 1997-01-16 04:14:18 dfs Exp $
$Id: README.UNIX,v 1.1 1998-01-15 02:50:14 dfs Exp $
REMIND version 3.0 for UNIX
REMIND is a sophisticated alarm/calendar program. Details are given

View File

@@ -1,4 +1,4 @@
$Id: README_QDOS,v 1.6 1997-09-16 03:16:30 dfs Exp $
$Id: README_QDOS,v 1.1 1998-01-15 02:50:14 dfs Exp $
REMIND version 3.0.18 for QDOS / SMSQ
REMIND is a sophisticated alarm/calendar program. Details are given

View File

@@ -22,7 +22,7 @@
#############################################################################
#
# $Id: defs.rem,v 1.4 1997-03-31 22:13:08 dfs Exp $
# $Id: defs.rem,v 1.1 1998-01-15 02:50:16 dfs Exp $
#
RUN OFF

238
install-sh Executable file
View File

@@ -0,0 +1,238 @@
#! /bin/sh
#
# install - install a program, script, or datafile
# This comes from X11R5.
#
# Calling this script install-sh is preferred over install.sh, to prevent
# `make' implicit rules from creating a file called install from it
# when there is no Makefile.
#
# This script is compatible with the BSD install script, but was written
# from scratch.
#
# set DOITPROG to echo to test this script
# Don't use :- since 4.3BSD and earlier shells don't like it.
doit="${DOITPROG-}"
# put in absolute paths if you don't have them in your path; or use env. vars.
mvprog="${MVPROG-mv}"
cpprog="${CPPROG-cp}"
chmodprog="${CHMODPROG-chmod}"
chownprog="${CHOWNPROG-chown}"
chgrpprog="${CHGRPPROG-chgrp}"
stripprog="${STRIPPROG-strip}"
rmprog="${RMPROG-rm}"
mkdirprog="${MKDIRPROG-mkdir}"
transformbasename=""
transform_arg=""
instcmd="$mvprog"
chmodcmd="$chmodprog 0755"
chowncmd=""
chgrpcmd=""
stripcmd=""
rmcmd="$rmprog -f"
mvcmd="$mvprog"
src=""
dst=""
dir_arg=""
while [ x"$1" != x ]; do
case $1 in
-c) instcmd="$cpprog"
shift
continue;;
-d) dir_arg=true
shift
continue;;
-m) chmodcmd="$chmodprog $2"
shift
shift
continue;;
-o) chowncmd="$chownprog $2"
shift
shift
continue;;
-g) chgrpcmd="$chgrpprog $2"
shift
shift
continue;;
-s) stripcmd="$stripprog"
shift
continue;;
-t=*) transformarg=`echo $1 | sed 's/-t=//'`
shift
continue;;
-b=*) transformbasename=`echo $1 | sed 's/-b=//'`
shift
continue;;
*) if [ x"$src" = x ]
then
src=$1
else
# this colon is to work around a 386BSD /bin/sh bug
:
dst=$1
fi
shift
continue;;
esac
done
if [ x"$src" = x ]
then
echo "install: no input file specified"
exit 1
else
true
fi
if [ x"$dir_arg" != x ]; then
dst=$src
src=""
if [ -d $dst ]; then
instcmd=:
else
instcmd=mkdir
fi
else
# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
# might cause directories to be created, which would be especially bad
# if $src (and thus $dsttmp) contains '*'.
if [ -f $src -o -d $src ]
then
true
else
echo "install: $src does not exist"
exit 1
fi
if [ x"$dst" = x ]
then
echo "install: no destination specified"
exit 1
else
true
fi
# If destination is a directory, append the input filename; if your system
# does not like double slashes in filenames, you may need to add some logic
if [ -d $dst ]
then
dst="$dst"/`basename $src`
else
true
fi
fi
## this sed command emulates the dirname command
dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
# Make sure that the destination directory exists.
# this part is taken from Noah Friedman's mkinstalldirs script
# Skip lots of stat calls in the usual case.
if [ ! -d "$dstdir" ]; then
defaultIFS='
'
IFS="${IFS-${defaultIFS}}"
oIFS="${IFS}"
# Some sh's can't handle IFS=/ for some reason.
IFS='%'
set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
IFS="${oIFS}"
pathcomp=''
while [ $# -ne 0 ] ; do
pathcomp="${pathcomp}${1}"
shift
if [ ! -d "${pathcomp}" ] ;
then
$mkdirprog "${pathcomp}"
else
true
fi
pathcomp="${pathcomp}/"
done
fi
if [ x"$dir_arg" != x ]
then
$doit $instcmd $dst &&
if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&
if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&
if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&
if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi
else
# If we're going to rename the final executable, determine the name now.
if [ x"$transformarg" = x ]
then
dstfile=`basename $dst`
else
dstfile=`basename $dst $transformbasename |
sed $transformarg`$transformbasename
fi
# don't allow the sed command to completely eliminate the filename
if [ x"$dstfile" = x ]
then
dstfile=`basename $dst`
else
true
fi
# Make a temp file name in the proper directory.
dsttmp=$dstdir/#inst.$$#
# Move or copy the file name to the temp name
$doit $instcmd $src $dsttmp &&
trap "rm -f ${dsttmp}" 0 &&
# and set any options; do chmod last to preserve setuid bits
# If any of these fail, we abort the whole thing. If we want to
# ignore errors from any of these, just make sure not to ignore
# errors from the above "$doit $instcmd $src $dsttmp" command.
if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&
if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&
if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&
if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
# Now rename the file to the real destination.
$doit $rmcmd -f $dstdir/$dstfile &&
$doit $mvcmd $dsttmp $dstdir/$dstfile
fi &&
exit 0

View File

@@ -1,4 +1,4 @@
.\" $Id: kall.1,v 1.2 1996-04-28 02:01:58 dfs Exp $
.\" $Id: kall.1,v 1.1 1998-01-15 02:50:17 dfs Exp $
.TH KALL 1 "26 February 1991"
.UC 4
.SH NAME

View File

@@ -1,4 +1,4 @@
.\" $Id: rem.1,v 1.2 1996-04-28 02:02:01 dfs Exp $
.\" $Id: rem.1,v 1.1 1998-01-15 02:50:17 dfs Exp $
.TH REM 1 "26 February 1991"
.UC 4
.SH NAME

View File

@@ -1,4 +1,4 @@
.\" $Id: rem2ps.1,v 1.2 1996-04-28 02:02:01 dfs Exp $
.\" $Id: rem2ps.1,v 1.1 1998-01-15 02:50:18 dfs Exp $
.TH REM2PS 1 "27 April 1996"
.UC4
.SH NAME

View File

@@ -1,4 +1,4 @@
.\" $Id: remind.1,v 1.10 1997-08-31 17:03:26 dfs Exp $
.\" $Id: remind.1,v 1.1 1998-01-15 02:50:18 dfs Exp $
.TH REMIND 1 "31 July 1997"
.UC 4
.SH NAME

View File

@@ -1,4 +1,4 @@
.\" $Id: tkremind.1,v 1.4 1996-09-28 18:46:57 dfs Exp $ "
.\" $Id: tkremind.1,v 1.1 1998-01-15 02:50:19 dfs Exp $ "
.TH TKREMIND 1 "7 July 1996"
.UC 4
.SH NAME

10
scripts/README Normal file
View File

@@ -0,0 +1,10 @@
Files in this directory:
kall -- Kills a program by command name, as in "kall remind"
rem -- Starts Remind with a default file of $HOME/.reminders
remind-all.csh -- Mails reminders to all users (C-Shell version)
remind-all.sh -- Mails reminders to all users (Bourne Shell version)
tkremind* -- Tcl/Tk graphical calendar using Remind as engine
$Id: README,v 1.1 1998-01-15 02:50:20 dfs Exp $

View File

@@ -1,6 +1,6 @@
#!/bin/sh
#
# $Id: kall,v 1.1 1996-03-27 03:25:59 dfs Exp $
# $Id: kall,v 1.1 1998-01-15 02:50:20 dfs Exp $
#
# kall - kill all processes belonging to this user that match
# specified string.

View File

@@ -2,7 +2,7 @@
#
# rem - by David Skoll - 26 February 1991
#
# $Id: rem,v 1.1 1996-03-27 03:26:06 dfs Exp $
# $Id: rem,v 1.1 1998-01-15 02:50:21 dfs Exp $
#
# This script runs 'remind' with a default reminder file assumed. You
# can override the default by using "rem -F newfile ..." (But why would

View File

@@ -2,7 +2,7 @@
# Shell script to mail all users reminders.
# $Id: remind-all.csh,v 1.1 1996-03-27 03:26:08 dfs Exp $
# $Id: remind-all.csh,v 1.1 1998-01-15 02:50:21 dfs Exp $
# Run it AFTER MIDNIGHT so that date is correct!
# On our system, we have the following in our crontab:

View File

@@ -3,7 +3,7 @@
# This file is part of REMIND
#
# $Id: remind-all.sh,v 1.2 1997-01-16 04:14:30 dfs Exp $
# $Id: remind-all.sh,v 1.1 1998-01-15 02:50:21 dfs Exp $
#
# REMIND is Copyright (C) 1992-1997 by David F. Skoll
# This file is Copyright (C) 1990 by Bill Aten

View File

@@ -11,7 +11,7 @@
#
#--------------------------------------------------------------
# $Id: tkremind,v 1.13 1997-09-21 23:23:37 dfs Exp $
# $Id: tkremind,v 1.1 1998-01-15 02:50:21 dfs Exp $
# the next line restarts using wish \
exec wish "$0" "$@"

View File

@@ -1,5 +1,5 @@
# Makefile for REMIND
# $Id: Makefile,v 1.21 1997-09-16 03:16:30 dfs Exp $
# $Id: Makefile,v 1.1 1998-01-15 02:50:24 dfs Exp $
#-----------------------------------------------------------------------------
# THINGS FOR YOU TO EDIT START BELOW

View File

@@ -1,4 +1,4 @@
#$Id: Makefile_QDOS,v 1.6 1997-09-16 03:16:30 dfs Exp $
#$Id: Makefile_QDOS,v 1.1 1998-01-15 02:50:24 dfs Exp $
# Makefile for REMIND for QDOS / SMSQ
#-----------------------------------------------------------------------------

View File

@@ -11,7 +11,7 @@
/* */
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: amiga.c,v 1.3 1997-03-30 19:07:36 dfs Exp $";
static char const RCSID[] = "$Id: amiga.c,v 1.1 1998-01-15 02:50:25 dfs Exp $";
#include <stdlib.h>
#include <string.h>

View File

@@ -10,7 +10,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: calendar.c,v 1.6 1997-09-21 23:23:35 dfs Exp $";
static char const RCSID[] = "$Id: calendar.c,v 1.1 1998-01-15 02:50:25 dfs Exp $";
#include <stdio.h>
#include <string.h>

54
src/config.h.in Normal file
View File

@@ -0,0 +1,54 @@
/* config.h.in. Generated automatically from configure.in by autoheader. */
/* Edited by running "configure" to create config.h automagically */
/* $Id: config.h.in,v 1.1 1998-01-15 02:50:25 dfs Exp $ */
/* Define to empty if the keyword does not work. */
#undef const
/* Define if you don't have vprintf but do have _doprnt. */
#undef HAVE_DOPRNT
/* Define if utime(file, NULL) sets file's timestamp to the present. */
#undef HAVE_UTIME_NULL
/* Define if you have the vprintf function. */
#undef HAVE_VPRINTF
/* Define as the return type of signal handlers (int or void). */
#undef RETSIGTYPE
/* Define if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Define if your <sys/time.h> declares struct tm. */
#undef TM_IN_SYS_TIME
/* Define if you have the mktime function. */
#undef HAVE_MKTIME
/* Define if you have the putenv function. */
#undef HAVE_PUTENV
/* Define if you have the strstr function. */
#undef HAVE_STRSTR
/* Define if you have the <malloc.h> header file. */
#undef HAVE_MALLOC_H
/* Define if you have the <stdarg.h> header file. */
#undef HAVE_STDARG_H
/* Define if you have the <sys/file.h> header file. */
#undef HAVE_SYS_FILE_H
/* Define if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H
/* Define if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define if you have the m library (-lm). */
#undef HAVE_LIBM
#include "custom.h"

View File

@@ -1,17 +1,16 @@
/***************************************************************/
/* */
/* CONFIG.H */
/* CUSTOM.H */
/* */
/* Contains various configuration parameters for Remind. */
/* You may have to edit this file to tweak parameters or take */
/* care of certain system dependencies. */
/* Contains various configuration parameters for Remind */
/* which you can customize. */
/* */
/* This file is part of REMIND. */
/* Copyright (C) 1992-1997 by David F. Skoll */
/* Copyright (C) 1992-1998 by David F. Skoll */
/* */
/***************************************************************/
/* $Id: config.h,v 1.11 1998-01-12 02:19:21 dfs Exp $ */
/* $Id: custom.h,v 1.1 1998-01-15 02:50:25 dfs Exp $ */
/*---------------------------------------------------------------------*/
/* LAT_DEG, LAT_MIN and LAT_SEC: Latitude of your location */
@@ -32,21 +31,6 @@
#define LON_SEC 0
#define LOCATION "Ottawa"
/*---------------------------------------------------------------------*/
/* HAVE_MKTIME: Define this if your C library includes the mktime() */
/* function. Otherwise, will attempt to use the Unix */
/* style time manipulations. */
/*---------------------------------------------------------------------*/
#define HAVE_MKTIME 1
/*---------------------------------------------------------------------*/
/* NEED_TIMEGM: If your C library does not have mktime() and it ALSO */
/* does not have timelocal() or timegm(), uncomment the */
/* next line. If HAVE_MKTIME is defined, NEED_TIMEGM is */
/* ignored. Very few systems should require NEED_TIMEGM. */
/*---------------------------------------------------------------------*/
/* #define NEED_TIMEGM 1 */
/*---------------------------------------------------------------------*/
/* DEFAULT_PAGE: The default page size to use for Rem2PS. */
/* The Letter version is appropriate for North America; the A4 version */
@@ -76,12 +60,12 @@
#define ISOLATIN1 1
/*---------------------------------------------------------------------*/
/* IBMEXTENDED: uncomment the following line if you want to use the */
/* IBM extended character set. NOT ALL LANGUAGE MODULES SUPPORT THIS. */
/* IBMEXTENDED: define as 1 if your system uses the IBM extended */
/* character set. NOT ALL LANGUAGE MODULES SUPPORT THIS. */
/* Note that at most one of ISOLATIN1 or IBMEXTENDED should be */
/* defined; if both are defined, the results are unspecified. */
/* 1; if both are defined as 1, the results are unspecified. */
/*---------------------------------------------------------------------*/
/* #define IBMEXTENDED 1 */
#define IBMEXTENDED 0
/*---------------------------------------------------------------------*/
/* WANT_U_OPTION: Comment out the next define to permanently disable */
@@ -90,6 +74,10 @@
/*---------------------------------------------------------------------*/
#define WANT_U_OPTION 1
/**********************************************************************/
/* You most likely do NOT have to tweak anything after this! */
/**********************************************************************/
/*---------------------------------------------------------------------*/
/* WANT_SHELL_ESCAPING: Define this if you want special shell */
/* characters to be escaped with a backslash for the -k option. */
@@ -98,12 +86,6 @@
#define WANT_SHELL_ESCAPING 1
#endif
/*---------------------------------------------------------------------*/
/* STRSTR: If your system does not have the "strstr" function, */
/* uncomment the following line. */
/*---------------------------------------------------------------------*/
/* #define NO_STRSTR 1 */
/*---------------------------------------------------------------------*/
/* Some implementations have a broken 'putc' and 'putchar'. */
/*---------------------------------------------------------------------*/
@@ -111,20 +93,6 @@
#define BROKEN_PUTC
#endif
/*---------------------------------------------------------------------*/
/* STDLIB: If you don't have the <stdlib.h> header file, comment the */
/* following line. */
/*---------------------------------------------------------------------*/
#define HAVE_STDLIB_H 1
/*---------------------------------------------------------------------*/
/* MALLOC: If you do not have the <malloc.h> header file, */
/* comment out the next 3 lines. */
/*---------------------------------------------------------------------*/
#ifdef UNIX
#define HAVE_MALLOC_H 1
#endif
/*---------------------------------------------------------------------*/
/* BASE: The base year for date calculation. NOTE! January 1 of the */
/* base year MUST be a Monday, else Remind will not work! */
@@ -198,37 +166,6 @@
#define HAVE_PROTOS 1
#endif
/*---------------------------------------------------------------------*/
/* Does our C compiler understand "const"? If not, define it as empty */
/* You may want to change the test -- it's very conservative. */
/*---------------------------------------------------------------------*/
#if !defined(__STDC__) && !defined(__TURBOC__) && !defined(__BORLANDC__)
#define const
#endif
/*---------------------------------------------------------------------*/
/* Do we use the <stdarg.h> scheme for functions with variable number */
/* of parameters? If not, the <varargs.h> scheme is assumed. */
/*---------------------------------------------------------------------*/
#if defined(__STDC__) || defined(__TURBOC__) || defined(__BORLANDC__)
#define HAVE_STDARG 1
#endif
/*---------------------------------------------------------------------*/
/* Does the function argument to the signal() function take an INT */
/* argument? If yes, uncomment the next line. If you get it wrong, */
/* the only bad side effect is a compiler warning, so don't worry too */
/* much about it. */
/*---------------------------------------------------------------------*/
#define SIGHANDLER_INT_ARG 1
/*---------------------------------------------------------------------*/
/* Do we have the <unistd.h> header? If not, use sys/files.h */
/*---------------------------------------------------------------------*/
#ifdef UNIX
#define HAVE_UNISTD 1
#endif
/*---------------------------------------------------------------------*/
/* How many attempts to resolve a weird date spec? */
/*---------------------------------------------------------------------*/

View File

@@ -12,7 +12,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: dorem.c,v 1.6 1997-09-16 03:16:31 dfs Exp $";
static char const RCSID[] = "$Id: dorem.c,v 1.1 1998-01-15 02:50:26 dfs Exp $";
#include <stdio.h>
#include <ctype.h>

View File

@@ -11,7 +11,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: dosubst.c,v 1.5 1997-03-30 19:07:38 dfs Exp $";
static char const RCSID[] = "$Id: dosubst.c,v 1.1 1998-01-15 02:50:26 dfs Exp $";
#define L_IN_DOSUBST
#include <stdio.h>

View File

@@ -9,7 +9,7 @@
/* */
/***************************************************************/
/* $Id: err.h,v 1.3 1997-01-16 04:14:22 dfs Exp $ */
/* $Id: err.h,v 1.1 1998-01-15 02:50:26 dfs Exp $ */
/* Note that not all of the "errors" are really errors - some are just
messages for information purposes. Constants beginning with M_ should

View File

@@ -10,7 +10,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: expr.c,v 1.6 1997-03-30 19:07:38 dfs Exp $";
static char const RCSID[] = "$Id: expr.c,v 1.1 1998-01-15 02:50:27 dfs Exp $";
#include <stdio.h>
#include <ctype.h>

View File

@@ -9,7 +9,7 @@
/* */
/***************************************************************/
/* $Id: expr.h,v 1.2 1997-01-16 04:14:22 dfs Exp $ */
/* $Id: expr.h,v 1.1 1998-01-15 02:50:27 dfs Exp $ */
/* Define the types of values */
#define ERR_TYPE 0

View File

@@ -12,7 +12,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: files.c,v 1.9 1997-08-31 17:03:25 dfs Exp $";
static char const RCSID[] = "$Id: files.c,v 1.1 1998-01-15 02:50:27 dfs Exp $";
#include <stdio.h>
#ifdef HAVE_STDLIB_H

View File

@@ -11,7 +11,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: funcs.c,v 1.7 1997-03-30 19:07:39 dfs Exp $";
static char const RCSID[] = "$Id: funcs.c,v 1.1 1998-01-15 02:50:28 dfs Exp $";
#include <stdio.h>
#ifdef HAVE_STDLIB_H

View File

@@ -13,7 +13,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: globals.c,v 1.3 1997-03-30 19:07:39 dfs Exp $";
static char const RCSID[] = "$Id: globals.c,v 1.1 1998-01-15 02:50:29 dfs Exp $";
#include <stdio.h> /* For defintion of FILE - sigh! */
#include "types.h"

View File

@@ -11,7 +11,7 @@
/* */
/***************************************************************/
/* $Id: globals.h,v 1.2 1997-01-16 04:14:24 dfs Exp $ */
/* $Id: globals.h,v 1.1 1998-01-15 02:50:29 dfs Exp $ */
#ifdef MK_GLOBALS
#undef EXTERN

View File

@@ -13,7 +13,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: hbcal.c,v 1.3 1997-03-30 19:07:40 dfs Exp $";
static char const RCSID[] = "$Id: hbcal.c,v 1.1 1998-01-15 02:50:29 dfs Exp $";
#include <stdio.h> /* For FILE used by protos.h - sigh. */
#include "types.h"

View File

@@ -12,7 +12,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: init.c,v 1.7 1997-08-31 17:03:26 dfs Exp $";
static char const RCSID[] = "$Id: init.c,v 1.1 1998-01-15 02:50:30 dfs Exp $";
#define L_IN_INIT 1
#include <stdio.h>

View File

@@ -9,7 +9,7 @@
/* */
/***************************************************************/
/* $Id: lang.h,v 1.6 1997-01-16 04:14:26 dfs Exp $ */
/* $Id: lang.h,v 1.1 1998-01-15 02:50:30 dfs Exp $ */
/* I'm chauvinistic and name each language with its English name... */
@@ -44,30 +44,30 @@
/* Pick up the appropriate header file */
#if LANG == ENGLISH
#include "english.h"
#include "langs/english.h"
#elif LANG == GERMAN
#include "german.h"
#include "langs/german.h"
#elif LANG == DUTCH
#include "dutch.h"
#include "langs/dutch.h"
#elif LANG == FINNISH
#include "finnish.h"
#include "langs/finnish.h"
#elif LANG == FRENCH
#include "french.h"
#include "langs/french.h"
#elif LANG == NORWEGIAN
#include "norwgian.h"
#include "langs/norwgian.h"
#elif LANG == DANISH
#include "danish.h"
#include "langs/danish.h"
#elif LANG == POLISH
#include "polish.h"
#include "langs/polish.h"
#elif LANG == BRAZPORT
#include "portbr.h"
#include "langs/portbr.h"
#elif LANG == ITALIAN
#include "italian.h"
#include "langs/italian.h"
#elif LANG == ROMANIAN
#include "romanian.h"
#include "langs/romanian.h"
/* If no sensible language, choose English. I intended to use
the #error directive here, but some C compilers barf. */
#else
#include "english.h"
#include "langs/english.h"
#endif

View File

@@ -11,7 +11,7 @@
/* */
/***************************************************************/
/* $Id: danish.h,v 1.2 1997-01-16 04:14:20 dfs Exp $ */
/* $Id: danish.h,v 1.1 1998-01-15 02:50:44 dfs Exp $ */
/* The very first define in a language support file must be L_LANGNAME: */
#define L_LANGNAME "Danish"

View File

@@ -15,7 +15,7 @@
/* */
/***************************************************************/
/* $Id: dutch.h,v 1.2 1997-01-16 04:14:21 dfs Exp $ */
/* $Id: dutch.h,v 1.1 1998-01-15 02:50:44 dfs Exp $ */
/* The very first define in a language support file must be L_LANGNAME: */
#define L_LANGNAME "Dutch"

View File

@@ -9,7 +9,7 @@
/* */
/***************************************************************/
/* $Id: english.h,v 1.2 1997-01-16 04:14:21 dfs Exp $ */
/* $Id: english.h,v 1.1 1998-01-15 02:50:45 dfs Exp $ */
/* The very first define in a language support file must be L_LANGNAME: */
#define L_LANGNAME "English"

View File

@@ -15,7 +15,7 @@
/* */
/***************************************************************/
/* $Id: finnish.h,v 1.6 1998-01-12 02:19:21 dfs Exp $ */
/* $Id: finnish.h,v 1.1 1998-01-15 02:50:45 dfs Exp $ */
/* The very first define in a language support file must be L_LANGNAME: */
#define L_LANGNAME "Finnish"

View File

@@ -14,7 +14,7 @@
/* */
/***************************************************************/
/* $Id: french.h,v 1.5 1997-08-31 17:03:25 dfs Exp $ */
/* $Id: french.h,v 1.1 1998-01-15 02:50:45 dfs Exp $ */
/* The very first define in a language support file must be L_LANGNAME: */
#define L_LANGNAME "French"

View File

@@ -13,7 +13,7 @@
/* */
/***************************************************************/
/* $Id: german.h,v 1.2 1997-01-16 04:14:24 dfs Exp $ */
/* $Id: german.h,v 1.1 1998-01-15 02:50:46 dfs Exp $ */
/* The very first define in a language support file must be L_LANGNAME: */
#define L_LANGNAME "German"

View File

@@ -11,7 +11,7 @@
/* */
/***************************************************************/
/* $Id: italian.h,v 1.2 1997-01-16 04:14:26 dfs Exp $ */
/* $Id: italian.h,v 1.1 1998-01-15 02:50:46 dfs Exp $ */
/* The very first define in a language support file must be L_LANGNAME: */
#define L_LANGNAME "Italian"

View File

@@ -10,7 +10,7 @@
/* */
/***************************************************************/
/* $Id: norwgian.h,v 1.2 1997-01-16 04:14:27 dfs Exp $ */
/* $Id: norwgian.h,v 1.1 1998-01-15 02:50:46 dfs Exp $ */
/* The very first define in a language support file must be L_LANGNAME: */
#define L_LANGNAME "Norwegian"

View File

@@ -13,7 +13,7 @@
/* */
/***************************************************************/
/* $Id: polish.h,v 1.4 1997-01-16 04:14:28 dfs Exp $ */
/* $Id: polish.h,v 1.1 1998-01-15 02:50:46 dfs Exp $ */
/* The very first define in a language support file must be L_LANGNAME: */
#define L_LANGNAME "Polish"

View File

@@ -14,7 +14,7 @@
/* */
/***************************************************************/
/* $Id: portbr.h,v 1.2 1997-01-16 04:14:29 dfs Exp $ */
/* $Id: portbr.h,v 1.1 1998-01-15 02:50:47 dfs Exp $ */
/* The very first define in a language support file must be L_LANGNAME: */
#define L_LANGNAME "Brazilian Portuguese"

View File

@@ -13,7 +13,7 @@
/* */
/***************************************************************/
/* $Id: romanian.h,v 1.2 1997-01-16 04:14:31 dfs Exp $ */
/* $Id: romanian.h,v 1.1 1998-01-15 02:50:47 dfs Exp $ */
/* The very first define in a language support file must be L_LANGNAME: */
#define L_LANGNAME "Romanian"

View File

View File

@@ -11,7 +11,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: main.c,v 1.9 1997-09-07 19:19:11 dfs Exp $";
static char const RCSID[] = "$Id: main.c,v 1.1 1998-01-15 02:50:31 dfs Exp $";
#ifdef HAVE_STDLIB_H
#include <stdlib.h>

View File

@@ -1,5 +1,5 @@
# Makefile for REMIND for Borland C++
# $Id: makefile.bcc,v 1.6 1997-09-16 03:16:32 dfs Exp $
# $Id: makefile.bcc,v 1.1 1998-01-15 02:50:32 dfs Exp $
VERSION= 03.00.18

View File

@@ -1,5 +1,5 @@
# Makefile for REMIND for Microsoft C for MSDOS
# $Id: makefile.msc,v 1.1 1996-03-27 03:26:01 dfs Exp $
# $Id: makefile.msc,v 1.1 1998-01-15 02:50:32 dfs Exp $
OBJS= calendar.obj dorem.obj dosubst.obj expr.obj files.obj funcs.obj \
globals.obj init.obj main.obj omit.obj token.obj trigger.obj userfns.obj \

View File

@@ -1,6 +1,6 @@
# Makefile for REMIND
#
# $Id: makefile.os2,v 1.3 1997-03-31 22:13:09 dfs Exp $
# $Id: makefile.os2,v 1.1 1998-01-15 02:50:32 dfs Exp $
#
# THIS IS OUT OF DATE!
#

View File

@@ -1,5 +1,5 @@
# Makefile for REMIND for Turbo C for MSDOS
# $Id: makefile.tc,v 1.6 1997-09-16 03:16:32 dfs Exp $
# $Id: makefile.tc,v 1.1 1998-01-15 02:50:33 dfs Exp $
CC= tcc
VERSION= 03.00.18

View File

@@ -10,7 +10,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: moon.c,v 1.3 1997-03-30 19:07:42 dfs Exp $";
static char const RCSID[] = "$Id: moon.c,v 1.1 1998-01-15 02:50:33 dfs Exp $";
/* All of these routines were adapted from the program "moontool"
by John Walker, February 1988. Here's the blurb from moontool:

View File

@@ -11,7 +11,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: omit.c,v 1.5 1997-09-16 03:16:32 dfs Exp $";
static char const RCSID[] = "$Id: omit.c,v 1.1 1998-01-15 02:50:34 dfs Exp $";
#include <stdio.h>
#ifdef HAVE_STDLIB_H

View File

@@ -12,7 +12,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: os2func.c,v 1.3 1997-03-30 19:07:42 dfs Exp $";
static char const RCSID[] = "$Id: os2func.c,v 1.1 1998-01-15 02:50:34 dfs Exp $";
#ifdef OS2_POPUP
#define INCL_VIO

View File

@@ -9,7 +9,7 @@
/* */
/***************************************************************/
/* $Id: protos.h,v 1.3 1997-01-16 04:14:29 dfs Exp $ */
/* $Id: protos.h,v 1.1 1998-01-15 02:50:34 dfs Exp $ */
#ifdef HAVE_PROTOS
#define ARGS(x) x

View File

@@ -10,7 +10,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: queue.c,v 1.4 1997-03-30 19:07:44 dfs Exp $";
static char const RCSID[] = "$Id: queue.c,v 1.1 1998-01-15 02:50:34 dfs Exp $";
/* We only want object code generated if we have queued reminders */
#ifdef HAVE_QUEUED

View File

@@ -10,7 +10,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: rem2ps.c,v 1.9 1997-09-21 23:23:36 dfs Exp $";
static char const RCSID[] = "$Id: rem2ps.c,v 1.1 1998-01-15 02:50:35 dfs Exp $";
#include "lang.h"
#include <stdio.h>

View File

@@ -9,7 +9,7 @@
/* */
/***************************************************************/
/* $Id: rem2ps.h,v 1.2 1997-01-16 04:14:30 dfs Exp $ */
/* $Id: rem2ps.h,v 1.1 1998-01-15 02:50:35 dfs Exp $ */
char *PSProlog1[] =
{

View File

@@ -1,4 +1,4 @@
# $Id: smakefile,v 1.3 1996-10-12 02:49:35 dfs Exp $
# $Id: smakefile,v 1.1 1998-01-15 02:50:36 dfs Exp $
# Makefile for REMIND, suitable for SAS/C 6.50 under AmigaDOS
# English version
# THIS IS OUT OF DATE!

View File

@@ -10,7 +10,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: sort.c,v 1.3 1997-03-30 19:07:47 dfs Exp $";
static char const RCSID[] = "$Id: sort.c,v 1.1 1998-01-15 02:50:36 dfs Exp $";
#ifdef HAVE_STDLIB_H
#include <stdlib.h>

View File

@@ -11,7 +11,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: token.c,v 1.6 1997-09-16 03:16:35 dfs Exp $";
static char const RCSID[] = "$Id: token.c,v 1.1 1998-01-15 02:50:36 dfs Exp $";
#include <stdio.h>
#include <string.h>

View File

@@ -10,7 +10,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: trigger.c,v 1.4 1997-03-30 19:07:50 dfs Exp $";
static char const RCSID[] = "$Id: trigger.c,v 1.1 1998-01-15 02:50:37 dfs Exp $";
#include <stdio.h>
#ifdef HAVE_STDLIB_H

View File

@@ -9,7 +9,7 @@
/* */
/***************************************************************/
/* $Id: types.h,v 1.5 1997-09-16 03:16:35 dfs Exp $ */
/* $Id: types.h,v 1.1 1998-01-15 02:50:37 dfs Exp $ */
/* Values */
typedef struct {

View File

@@ -11,7 +11,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: userfns.c,v 1.4 1997-03-30 19:07:51 dfs Exp $";
static char const RCSID[] = "$Id: userfns.c,v 1.1 1998-01-15 02:50:37 dfs Exp $";
#include <stdio.h>
#ifdef HAVE_STDLIB_H

View File

@@ -10,7 +10,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: utils.c,v 1.4 1997-03-30 19:07:51 dfs Exp $";
static char const RCSID[] = "$Id: utils.c,v 1.1 1998-01-15 02:50:37 dfs Exp $";
#include <string.h>
#include <stdio.h>

View File

@@ -11,7 +11,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: var.c,v 1.5 1997-03-30 19:07:51 dfs Exp $";
static char const RCSID[] = "$Id: var.c,v 1.1 1998-01-15 02:50:38 dfs Exp $";
#include <stdio.h>
#include <string.h>

View File

@@ -9,5 +9,5 @@
/* */
/***************************************************************/
/* $Id: version.h,v 1.7 1997-09-16 03:16:35 dfs Exp $ */
/* $Id: version.h,v 1.1 1998-01-15 02:50:39 dfs Exp $ */
#define VERSION "03.00.18"

View File

@@ -2,7 +2,7 @@
# ---------------------------------------------------------------------------
# TEST-REM
#
# $Id: test-rem,v 1.2 1997-01-16 04:14:31 dfs Exp $
# $Id: test-rem,v 1.1 1998-01-15 02:50:49 dfs Exp $
#
# This file runs an acceptance test for Remind. To use it, type:
# sh test-rem OR make test

View File

@@ -2,7 +2,7 @@
rem ---------------------------------------------------------------------------
rem TEST-REM
rem
rem $Id: test-rem.bat,v 1.2 1997-01-16 04:14:31 dfs Exp $
rem $Id: test-rem.bat,v 1.1 1998-01-15 02:50:50 dfs Exp $
rem
rem This file runs an MSDOS acceptance test for Remind. To use it, type:
rem test-rem

View File

@@ -2,7 +2,7 @@
rem ---------------------------------------------------------------------------
rem TEST-REM
rem
rem $Id: test-rem.cmd,v 1.2 1997-01-16 04:14:32 dfs Exp $
rem $Id: test-rem.cmd,v 1.1 1998-01-15 02:50:50 dfs Exp $
rem
rem This file runs an OS/2 acceptance test for Remind. To use it, type:
rem test-rem

View File

@@ -1,5 +1,5 @@
/* ---------------------------------------------------------------------------
$Id: test-rem.rexx,v 1.1 1996-03-31 04:02:00 dfs Exp $
$Id: test-rem.rexx,v 1.1 1998-01-15 02:50:50 dfs Exp $
TEST-REM
This file runs an AmigaDOS acceptance test for Remind. To use it, type:
rx test-rem

View File

@@ -1,6 +1,6 @@
# Test file for REMIND
#
# $Id: test1.cmp,v 1.7 1997-09-16 03:16:34 dfs Exp $
# $Id: test1.cmp,v 1.1 1998-01-15 02:50:51 dfs Exp $
#
# Use this file to test the date calculation routines
# of the REMIND program by typing:

View File

@@ -1,6 +1,6 @@
# Test file for REMIND
#
# $Id: test2.cmp,v 1.7 1997-09-16 03:16:34 dfs Exp $
# $Id: test2.cmp,v 1.1 1998-01-15 02:50:51 dfs Exp $
#
# Use this file to test the date calculation routines
# of the REMIND program by typing:

View File

@@ -3,7 +3,7 @@
#
# TSTLANG.REM
#
# $Id: tstlang.rem,v 1.2 1997-01-16 04:14:33 dfs Exp $
# $Id: tstlang.rem,v 1.1 1998-01-15 02:50:52 dfs Exp $
#
# Use this file to test new language headers you may want to create.
# Usage: remind -rq tstlang.rem