diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-06-24 03:07:53 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-06-24 03:07:53 +0000 |
commit | 91c9f48204313f48283803346d8dfde2a6b56717 (patch) | |
tree | 342cb8052fd67015acba0a9731fd2beba240e4d5 /INSTALL | |
parent | cc72480dfb711da8819daacccecdeaf1b246ed48 (diff) | |
download | perl-91c9f48204313f48283803346d8dfde2a6b56717.tar.gz |
perl 5.003: INSTALL
Include $shrpdir in the list of installation directories.
Update comments on using GNU as/ld under SunOS and Solaris
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -312,6 +312,7 @@ directory of your choice): installscript=`echo $installscript | sed "s!$prefix!$installprefix!"` installsitelib=`echo $installsitelib | sed "s!$prefix!$installprefix!"` installsitearch=`echo $installsitearch | sed "s!$prefix!$installprefix!"` + shrpdir=`echo $shrpdir | sed "s!$prefix!$installprefix!"` Then, you can Configure and install in the usual way: @@ -536,9 +537,10 @@ correctly. When using gcc, you should probably have i_stdarg='define' and i_varags='undef' in config.sh. The problem is usually solved by running fixincludes correctly. -If you wish to use dynamic loading on SunOS or Solaris, and you -have GNU as and GNU ld installed, you may need to add B<-B/bin/> to -your $ccflags and $ldflags so that the system's versions of as +If you have problems with dynamic loading using gcc on SunOS or +Solaris, and you are using GNU as and GNU ld, you may need to add +B<-B/bin/> (for SunOS) or B<-B/usr/ccs/bin> (for Solaris) to your +$ccflags, $ldflags, and $lddlflags so that the system's versions of as and ld are used. If you run into dynamic loading problems, check your setting of |