-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
3,855 additions
and
4,559 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
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,37 @@ | ||
# Compilation instructions | ||
|
||
Compilation: | ||
|
||
./configure | ||
make | ||
|
||
Installation: | ||
|
||
make install | ||
|
||
Installation that overwrites config files and translation tables: | ||
|
||
make force-install | ||
|
||
# Compilation notes | ||
|
||
Ensure that the path to lex/yacc (or an equivalent) is in your $PATH | ||
environmental variable. For instance, under Solaris, you may need to add | ||
/usr/ccs/bin to your path to get detox to compile: | ||
|
||
export PATH=${PATH}:/usr/ccs/bin | ||
|
||
--- | ||
|
||
To get detox working with long options on Darwin or Solaris (or any other OS | ||
without getopt_long in its C library), I've included support for libpopt. | ||
Install libpopt and configure with the following: | ||
|
||
./configure --with-popt | ||
|
||
If you've installed libpopt in a directory other than /usr, which is likely, | ||
you'll want to specify the base path to libpopt. So, if popt.h is in | ||
/usr/local/include, you'll run configure like so: | ||
|
||
./configure --with-popt=/usr/local | ||
|
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
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
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,52 @@ | ||
# Thanks | ||
|
||
Special thanks to Patrick Schoenfeld and Joao Eriberto Mota Filho, for | ||
maintaining the Debian version. Release v1.2.1 is almost entirely comprised of | ||
their patches. | ||
|
||
Many thanks to Miguel Angelo Rozsas for suggesting UTF-8 support and his | ||
valuable input following that suggestion. This change helped introduce | ||
translation tables into detox. | ||
|
||
Ciaran McCreesh put together a package for Gentoo (rock!), submitted a patch | ||
to add a prefix onto install paths (for package builds) and helped fix | ||
parallel builds. | ||
|
||
Lou Alfonso for suggesting that the safe filter be controlled through a | ||
table so that it can be tuned easily. | ||
|
||
Christoph Wegscheider noticed that the install script was installing | ||
everything 755, for pointing out that not everyone has lex or yacc, and for | ||
his input on how umlauts should be converted. | ||
|
||
Gerg Thor informed me that characters on the PowerPC platform are unsigned | ||
by default and that the libpopt parser was rolling into an infinite loop as | ||
a result. | ||
|
||
Jon Amundsen pointed out that the lowercase converting sequence was only | ||
really working on case-insensitive filesystems. | ||
|
||
zero_dogg from sourceforget.net suggested adding the ability to prevent | ||
certain files from being translated. | ||
|
||
rsnemmen from sourceforge.net pointed out a bug in the way directories are | ||
handled when passed in from the command line. | ||
|
||
# Additional Thanks | ||
|
||
Eric S. Raymond for his work on "The Art of UNIX Programming" | ||
|
||
http://www.bbsinc.com/iso8859.html for their help in building a complete list | ||
of Latin-1 translations. | ||
|
||
SourceForge.net for their generous hosting of this and many other projects. | ||
|
||
http://en.wikipedia.org/wiki/UTF-8 for its help with explaining UTF-8. | ||
|
||
Data Structures Using C - Tenenbaum, Langsam and Augenstein - for their help | ||
with hashes. | ||
|
||
Paul Oakenfold for his unbelievable mixes. Version 1.0.0 was developed with | ||
the help of his Great Wall mix. | ||
|
||
|
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
Oops, something went wrong.