Juanito
Group: Members
Posts: 1601
Joined: Sep. 2005 |
|
Posted: May 10 2007,09:26 |
|
This works for me (admittedly in DSL-N but I don't think that will change anything):Code Sample | # dpkg -i /path-to-file/libc6_2.3.2.ds1-22sarge5_i386.deb # dpkg -i /path-to-file/libgcc1_3.4.3-13sarge1_i386.deb # dpkg -i /path-to-file/libdb4.2_4.2.52-18_i386.deb # dpkg -i /path-to-file/libgdbm3_1.8.3-2_i386.deb # dpkg -i /path-to-file/perl-base_5.8.4-8sarge5_i386.deb # dpkg -i --force-all /path-to-file/perl-modules_5.8.4-8sarge5_all.deb # dpkg -i /path-to-file/perl_5.8.4-8sarge5_i386.deb
| After that I was able to compile the perl module XML::Parser.pm (whatever that is) which, in turn, worked to compile another program.
If it would be useful, you could try building your own perl extension by using: Code Sample | # dpkg -L libc6 > files_perl # dpkg -L libgcc1 >> files_perl # dpkg -L libdb4.2 >> files_perl # dpkg -L libgdbm3 >> files_perl # dpkg -L perl-base >> files_perl # dpkg -L perl-modules >> files_perl # dpkg -L perl >> files_perl | and the editing the resulting files_perl to build an extension.
|