-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
***** fdutils version 5.2 of 1997/05/16 *****
One of the earliest 5.x version that was delivered with Slackware up to 4.0. This commit is for historical reasons only. The source code depends on very first Linux 2.0 kernel sources. Changes since 5.1: v19970516 (5.2) * 5.2 Released. v19970516 * Fixed sunsite location in doc. v19970430 * Fixed typoes in doc about autodetection. v19970428 * Fixed manpage installation. Changes since 5.0: v19970427 (v5.1) * 5.1 Released. * These repeated complaints about yylineno not defined start getting annoying ;-) v19970426 * More Makefile fixes. * Added note to doc about Alpha site. v19970422 * Various Makefile fixes. v19970421 * Lex yylineno fixes. Release 5.0: v19970419 (v5.0) * 5.0 Released. Originated-by: fdutils-5.2.tar.gz Originated-md5: 2c7ad8b6c3a1811cf277e495b6f3f2fa Originated-URL: https://mirrors.slackware.com/slackware/slackware-4.0/source/a/aaa_base/fdutils-5.2.tar.gz Signed-off-by: Stephan Linz <[email protected]>
- Loading branch information
Showing
110 changed files
with
15,842 additions
and
3,950 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
970516 5.2 Released | ||
970516 Fixed sunsite location in doc. | ||
970430 Fixed typoes in doc about autodetection. | ||
970428 Fixed manpage installation | ||
970427 5.1 Released. These repeated complaints about yylineno not | ||
defined start getting annoying ;-) | ||
970426 More Makefile fixes. Added note to doc about Alpha site | ||
970422 Various Makefile fixes | ||
970421 Lex yylineno fixes | ||
970419 5.0 Released |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@SET_MAKE@ | ||
|
||
all: compile comp.doc | ||
install: install.prog install.doc | ||
clean: clean.prog clean.doc | ||
|
||
compile: | ||
$(MAKE) -C src all | ||
|
||
install.prog: compile | ||
$(MAKE) -C src install.bin install.conf | ||
|
||
comp.doc: | ||
$(MAKE) -C doc all | ||
|
||
install.doc: doc | ||
$(MAKE) -C doc install | ||
|
||
clean.doc: | ||
$(MAKE) -C doc clean | ||
|
||
clean.prog: | ||
$(MAKE) -C src clean | ||
|
||
info: | ||
$(MAKE) -C doc info | ||
|
||
html: | ||
$(MAKE) -C doc html | ||
|
||
dvi: | ||
$(MAKE) -C doc dvi | ||
|
||
|
||
install.info: | ||
$(MAKE) -C doc install-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
/***** begin user configuration section *****/ | ||
|
||
/* Define this if you fdmount to be usable only by the 'floppy' group */ | ||
#undef FLOPPY_ONLY | ||
|
||
|
Oops, something went wrong.