svn commit: r375254 - in head/lang: perl5.14 perl5.16 perl5.18 perl5.20
Mathieu Arnold
mat at FreeBSD.org
Mon Dec 22 17:45:58 UTC 2014
Author: mat
Date: Mon Dec 22 17:45:56 2014
New Revision: 375254
URL: https://svnweb.freebsd.org/changeset/ports/375254
QAT: https://qat.redports.org/buildarchive/r375254/
Log:
Do not let Perl's Configure finds out if it needs to use nm or not. It should
not. In some case I can't reproduce, it was believing it should, and was
failing badly.
Reported by: Joe Francia, Scott Loga
Sponsored by: Absolight
Modified:
head/lang/perl5.14/Makefile
head/lang/perl5.16/Makefile
head/lang/perl5.18/Makefile
head/lang/perl5.20/Makefile
Modified: head/lang/perl5.14/Makefile
==============================================================================
--- head/lang/perl5.14/Makefile Mon Dec 22 17:41:54 2014 (r375253)
+++ head/lang/perl5.14/Makefile Mon Dec 22 17:45:56 2014 (r375254)
@@ -66,7 +66,7 @@ CONFIGURE_ARGS= -sde -Dprefix=${PREFIX}
-Dsiteman3dir=${SITE_MAN3} \
-Dsiteman1dir=${PREFIX}/man/man1 \
-Dotherlibdirs=${PREFIX}/lib/perl5/site_perl/${PERL_VER}:${PREFIX}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH} \
- -Ui_malloc -Ui_iconv -Uinstallusrbinperl \
+ -Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none
LOCALE_CLEANUP= LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
Modified: head/lang/perl5.16/Makefile
==============================================================================
--- head/lang/perl5.16/Makefile Mon Dec 22 17:41:54 2014 (r375253)
+++ head/lang/perl5.16/Makefile Mon Dec 22 17:45:56 2014 (r375254)
@@ -66,7 +66,7 @@ CONFIGURE_ARGS= -sde -Dprefix=${PREFIX}
-Dsiteman3dir=${SITE_MAN3} \
-Dsiteman1dir=${PREFIX}/man/man1 \
-Dotherlibdirs=${PREFIX}/lib/perl5/site_perl/${PERL_VER}:${PREFIX}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH} \
- -Ui_malloc -Ui_iconv -Uinstallusrbinperl \
+ -Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none
LOCALE_CLEANUP= LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
Modified: head/lang/perl5.18/Makefile
==============================================================================
--- head/lang/perl5.18/Makefile Mon Dec 22 17:41:54 2014 (r375253)
+++ head/lang/perl5.18/Makefile Mon Dec 22 17:45:56 2014 (r375254)
@@ -83,7 +83,7 @@ CONFIGURE_ARGS= -sde -Dprefix=${PREFIX}
-Dsiteman3dir=${SITE_MAN3} \
-Dsiteman1dir=${PREFIX}/man/man1 \
-Dotherlibdirs=${PREFIX}/lib/perl5/site_perl/${PERL_VER}:${PREFIX}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH} \
- -Ui_malloc -Ui_iconv -Uinstallusrbinperl \
+ -Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none
LOCALE_CLEANUP= LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
Modified: head/lang/perl5.20/Makefile
==============================================================================
--- head/lang/perl5.20/Makefile Mon Dec 22 17:41:54 2014 (r375253)
+++ head/lang/perl5.20/Makefile Mon Dec 22 17:45:56 2014 (r375254)
@@ -83,7 +83,7 @@ CONFIGURE_ARGS= -sde -Dprefix=${PREFIX}
-Dsitelib=${SITE_PERL} -Dscriptdir=${PREFIX}/bin \
-Dsiteman3dir=${SITE_MAN3} \
-Dsiteman1dir=${PREFIX}/man/man1 \
- -Ui_malloc -Ui_iconv -Uinstallusrbinperl \
+ -Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none
# When upgrading to 5.22+ remove this.
CONFIGURE_ARGS+= \
More information about the svn-ports-all
mailing list