Debian lenny version packages
[pkg-perl] / deb-src / libnet-ssleay-perl / libnet-ssleay-perl-1.35 / TODO
1 * Fix POD to pass t/02_pod_coverage.t.
2
3 * Update documentation with regard to the various limitations which have been
4   removed recently.
5
6 * Tests for ssl_read_until.
7
8 * Fix this issue on hpux:
9         two major diffs to the rest of the world:
10         1. libssl.sl instead of libssl.so
11            The default installation still expects .so files, so the sysadm needs to
12            make symlinks to find those Tux
13
14         2. HP-UX uses SHLIB_PATH alongside LD_LIBRARY_PATH Tux HP-UX allows both,
15            and allows them together. The search sequence can be set in each library
16            itself
17
18         If you find your libs in Makefile.PL, you should extend LD_LIBRARY_PATH
19         with that location, also in MAKEFILE to make 'make test' pass
20
21 * Better test coverage
22   + Write a test for http://rt.cpan.org/Ticket/Display.html?id=9611
23   + Test if exports work correctly
24
25 * Changelogging!
26
27 * Improve the search for installed openssl and zlib libs so it will recognize
28   them only runtime is installed without the headers required for building the
29   module.
30
31 * Instruction on how to the the prerequisites
32   Installing OpenSSL
33   ------------------
34   On Debian and Debian based Operating systems one can install
35   by typing:
36
37   apt-get install libssl-dev
38
39   On some Ubuntu versions libssl-dev seems to be broken as it doesn't depend on
40   zlib1g-dev.
41
42   apt-get install zlib1g fixes that.