mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 04:00:41 -04:00
2. Make this port respect Makefile.local. 3. Transfer manpages to Makefile.man. 4. Move manpages for modules, included into distribution, into lib/perl5/PERL_VER/perl/man/man3, to eliminate file conflicts with p5 ports for modules included with perl. 5. Use PREFIX/SITE_PERL_REL instead of SITE_PERL in the Makefile. 6. Switch to bzipped sources. 7. Other small adjustments. PR: 65925, 66096, 67205 Submitted by: foxfair (1), Charles Swiger <chuck@pkix.net> (1), krion (3) Reported by: Roy Badami <roy@gnomon.org.uk> (2)
20 lines
723 B
Bash
20 lines
723 B
Bash
--- hints/freebsd.sh.orig Sun May 30 17:55:47 2004
|
|
+++ hints/freebsd.sh Sun May 30 17:57:16 2004
|
|
@@ -88,6 +88,7 @@ case "$osvers" in
|
|
esac
|
|
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
|
libswanted=`echo $libswanted | sed 's/ bind / /'`
|
|
+ libswanted=`echo $libswanted | sed 's/ dl / /'`
|
|
# iconv gone in Perl 5.8.1, but if someone compiles 5.8.0 or earlier.
|
|
libswanted=`echo $libswanted | sed 's/ iconv / /'`
|
|
d_setregid='define'
|
|
@@ -102,6 +103,9 @@ case "$osvers" in
|
|
;;
|
|
esac
|
|
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
|
+ libswanted=`echo $libswanted | sed 's/ bind / /'`
|
|
+ libswanted=`echo $libswanted | sed 's/ dl / /'`
|
|
+ libswanted=`echo $libswanted | sed 's/ iconv / /'`
|
|
;;
|
|
esac
|
|
|