From 83a533b5060376e80c1e4e5668e2cf9fcc9103c6 Mon Sep 17 00:00:00 2001 From: Jeff Sheltren Date: Tue, 27 Jun 2017 13:28:30 -0600 Subject: [PATCH] Remove "old" files which are no longer used. --- .OLD-gitignore | 42 ------------------------- fortune-mod/old-INSTALL | 68 ----------------------------------------- 2 files changed, 110 deletions(-) delete mode 100644 .OLD-gitignore delete mode 100644 fortune-mod/old-INSTALL diff --git a/.OLD-gitignore b/.OLD-gitignore deleted file mode 100644 index a73f8d5..0000000 --- a/.OLD-gitignore +++ /dev/null @@ -1,42 +0,0 @@ -fortune-mod/datfiles/*.dat -fortune-mod/datfiles/*.u8 -fortune-mod/datfiles/cookies-stamp -fortune-mod/datfiles/off/ocookies-stamp -fortune-mod/datfiles/off/rotated-stamp -fortune-mod/datfiles/off/rotated/*.dat -fortune-mod/datfiles/off/rotated/*.u8 -fortune-mod/datfiles/off/rotated/art -fortune-mod/datfiles/off/rotated/astrology -fortune-mod/datfiles/off/rotated/atheism -fortune-mod/datfiles/off/rotated/black-humor -fortune-mod/datfiles/off/rotated/cookie -fortune-mod/datfiles/off/rotated/debian -fortune-mod/datfiles/off/rotated/definitions -fortune-mod/datfiles/off/rotated/drugs -fortune-mod/datfiles/off/rotated/ethnic -fortune-mod/datfiles/off/rotated/fortunes -fortune-mod/datfiles/off/rotated/hphobia -fortune-mod/datfiles/off/rotated/limerick -fortune-mod/datfiles/off/rotated/linux -fortune-mod/datfiles/off/rotated/misandry -fortune-mod/datfiles/off/rotated/miscellaneous -fortune-mod/datfiles/off/rotated/misogyny -fortune-mod/datfiles/off/rotated/politics -fortune-mod/datfiles/off/rotated/privates -fortune-mod/datfiles/off/rotated/racism -fortune-mod/datfiles/off/rotated/religion -fortune-mod/datfiles/off/rotated/riddles -fortune-mod/datfiles/off/rotated/sex -fortune-mod/datfiles/off/rotated/songs-poems -fortune-mod/datfiles/off/rotated/vulgarity -fortune-mod/datfiles/off/rotated/zippy -fortune-mod/datfiles/off/unrotated/*.dat -fortune-mod/datfiles/off/unrotated/*.u8 -fortune-mod/fortune/fortune -fortune-mod/fortune/fortune.o -fortune-mod/util/rot -fortune-mod/util/rot.o -fortune-mod/util/strfile -fortune-mod/util/strfile.o -fortune-mod/util/unstr -fortune-mod/util/unstr.o diff --git a/fortune-mod/old-INSTALL b/fortune-mod/old-INSTALL deleted file mode 100644 index d46f464..0000000 --- a/fortune-mod/old-INSTALL +++ /dev/null @@ -1,68 +0,0 @@ - -*****************WARNING****************** -Do not attempt to compile individual programs -in individual program subdirectories! -*****************WARNING****************** - -MAKE CHANGES IN THE TOP-LEVEL MAKEFILE - -CALL MAKE FROM THE TOP LEVEL - -I have a weakness for complex, multilevel makefiles. Therefore, the -makefiles included here are complex and multilevel. Always run make from -the top-level directory. Try 'make help' for a listing of possible -targets (the only one left out is randstr: compile it with make randstr). -All the important variables are defined in the top-level makefile, and -most of the make targets will crash and burn if they do not find the -variables that they are looking for. - -The good part of this is that except for the datfiles tree, the -sub-makefiles are all very simple. All the programs have rules of -the form: program: program.o, with the appropriate link command. -The only target safe to call in individual directories is clean. - -The makefiles for the datfiles subdirectory are complex in an attempt to -avoid distributing any more data than needed. The offensive files are -distributed in unrotated format; the make files have to rotate these -files before strfiling them. The make clean routine has to be able to -delete the rotated files without touching the unrotated ones. - -Pretty much everything is configurable in the top-level makefile, and it -mostly has pretty decent comments telling you what it is that you're -configuring. Read and change it as necessary. - -Amy A. Lewis alewis@email.unc.edu - - -Notes for non-Linux users -------------------------- - -The only system-dependant thing you should need to worry about is which -C function library to use for regular expressions. Two are supported: -the BSD regex library (re_comp/re_exec), and the POSIX regex library -(regcomp/regexec). Which you should use depends on what functions are -available, and which performs faster for you. - -If neither are available, you could try compiling the GNU Rx library, -which offers a high-performance regular expression library with both BSD -and POSIX interfaces. This is available at your nearest GNU software -mirror. - -To select the BSD regex library, add -DBSD_REGEX to REGEXDEFS in the -top-level Makefile. To select the POSIX regex library, add add --DPOSIX_REGEX to REGEXDEFS. If neither is defined, no regular -expression support will be included. - -Using the POSIX regex library requires the POSIX regex data structures -to be declared. This might be in the header, or in the -header. Define -DHAVE_REGEX_H in REGEXDEFS if it is in the -header, or -DHAVE_RX_H if it is in the header. If it turns out -to be somewhere else for your platform, please report this to the -current fortune-mod maintainer. - -The -DHAVE_REGEX_H and -HAVE_RX_H defines are also applicable to the BSD -regex library, but as they do not use custom data structures, not using -them should not result in anything more than "function not declared" -warnings. - - -- Dennis L. Clark -- 2.40.0