summaryrefslogtreecommitdiff
path: root/devel/tcl-trf/files/patch-zlib (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Resurrect this port from the Attic based on the new version from theMikhail Teterin2009-07-131-0/+300
| | | | | | | | author. As before, we modify the author's code to use either OpenSSL's -lcrypto or BSD's -lmd /directly/ instead of compiling the bundled definitions digests. We also link with -lz and -lbz2 instead of dlopen-ing them at run-time.
* Remove devel/tcl-trf as it has been marked BORKEN for over 5 months.Erwin Lansing2009-06-131-112/+0
|
* Retreat to using OpenSSL's message digest routines instead of -lmd. TheyMikhail Teterin2004-07-111-42/+0
| | | | | | | | | | | are sometimes faster and never slower. Using -lmd is still possible by building with ``TRF_USE_MD=yes''. Bump PORTREVISION. Use the RIPEMD160* routines from -lcrypto (or -lmd) instead of our own -- just like for md[25] and sha*. Neither -lcrypto nor -lmd provide RIPEMD128 (not strong enough?), so stay with our own implementation. sparc64/amd64 are not expected to work yet...
* Explicitly include <sys/types.h> and <unistd.h> to fix the breakage onMikhail Teterin2004-07-091-6/+60
| | | | | recent -current. Fix warnings -- on x86, at least, the package now builds with ``-Wall -Werror''.
* Resolve a few more symbols at compile/link time, rather than atMikhail Teterin2002-02-171-0/+100
run-time. This fixes the bz2 commands. We link against -lmd, so use <md2.h> and <md5.h>, instead of <openssl/md[25].h> (why do we even install those separately?). Bump up portrevision. Change the reference (in the comment) from -lscrypt to -lcrypt.