I'm trying to install a program, but keeps giving an error saying it doesn't find the perl library getopts.pl. My perl version is v5.16.2.
The error message is:
Can't locate getopts.pl in @INC (@INC contains:
/usr/lib/perl5/site_perl/5.16.2/x86_64-linux-thread-multi
/usr/lib/perl5/site_perl/5.16.2
/usr/lib/perl5/vendor_perl/5.16.2/x86_64-linux-thread-multi
/usr/lib/perl5/vendor_perl/5.16.2
/usr/lib/perl5/5.16.2/x86_64-linux-thread-multi
/usr/lib/perl5/5.16.2
/usr/lib/perl5/site_perl/5.16.2/x86_64-linux-thread-multi
/usr/lib/perl5/site_perl/5.16.2 /usr/lib/perl5/site_perl .) at ./sqc line 179.
Do you have any idea what is going on? My platform is openSUSE version 12.3 (Dartmouth) (x86_64)
*.pm
; anything that uses a*.pl
as a library harkens back to the perl4 days (e.g.require 'cgi-lib.pl'
). How old is this program? – thrig Aug 21 '15 at 20:13getopts.pl
is in a package calledlibperl4-corelibs-perl
. Perl 5 was released in 1994, makinggetopts.pl
obsolete, so it's quite an antique. – Gilles 'SO- stop being evil' Aug 21 '15 at 22:08