[Midnightbsd-cvs] src [6935] stable/0.5: turn off gdbm file extension in perl so there arent issues building current with the gdbm port installed
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sun Nov 9 14:36:41 EST 2014
Revision: 6935
http://svnweb.midnightbsd.org/src/?rev=6935
Author: laffer1
Date: 2014-11-09 14:36:40 -0500 (Sun, 09 Nov 2014)
Log Message:
-----------
turn off gdbm file extension in perl so there arent issues building current with the gdbm port installed
Modified Paths:
--------------
stable/0.5/contrib/perl/Configure
stable/0.5/contrib/perl/MANIFEST
stable/0.5/usr.bin/perl/BSDmakefile
Removed Paths:
-------------
stable/0.5/contrib/perl/ext/GDBM_File/
Modified: stable/0.5/contrib/perl/Configure
===================================================================
--- stable/0.5/contrib/perl/Configure 2014-11-06 12:07:44 UTC (rev 6934)
+++ stable/0.5/contrib/perl/Configure 2014-11-09 19:36:40 UTC (rev 6935)
@@ -1381,7 +1381,7 @@
: set usesocks on the Configure command line to enable socks.
: List of libraries we want.
: If anyone needs extra -lxxx, put those in a hint file.
-libswanted="sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun"
+libswanted="sfio socket bind inet nsl nm ndbm dbm db malloc dl dld ld sun"
libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD"
: We probably want to search /usr/shlib before most other libraries.
: This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
Modified: stable/0.5/contrib/perl/MANIFEST
===================================================================
--- stable/0.5/contrib/perl/MANIFEST 2014-11-06 12:07:44 UTC (rev 6934)
+++ stable/0.5/contrib/perl/MANIFEST 2014-11-09 19:36:40 UTC (rev 6935)
@@ -3799,13 +3799,6 @@
ext/File-Glob/t/rt114984.t See if File::Glob works
ext/File-Glob/t/taint.t See if File::Glob works
ext/File-Glob/t/threads.t See if File::Glob + threads works
-ext/GDBM_File/GDBM_File.pm GDBM extension Perl module
-ext/GDBM_File/GDBM_File.xs GDBM extension external subroutines
-ext/GDBM_File/hints/sco.pl Hint for GDBM_File for named architecture
-ext/GDBM_File/Makefile.PL GDBM extension makefile writer
-ext/GDBM_File/t/fatal.t Test the fatal_func argument to gdbm_open
-ext/GDBM_File/t/gdbm.t See if GDBM_File works
-ext/GDBM_File/typemap GDBM extension interface types
ext/Hash-Util/Changes Change history of Hash::Util
ext/Hash-Util-FieldHash/Changes Changes for Hash::Util::FieldHash
ext/Hash-Util-FieldHash/FieldHash.xs XS portion
Modified: stable/0.5/usr.bin/perl/BSDmakefile
===================================================================
--- stable/0.5/usr.bin/perl/BSDmakefile 2014-11-06 12:07:44 UTC (rev 6934)
+++ stable/0.5/usr.bin/perl/BSDmakefile 2014-11-09 19:36:40 UTC (rev 6935)
@@ -26,7 +26,7 @@
CONFIGURE_ARGS= -des -Dprefix=/usr -Dsiteprefix=/usr/local -Dvendorprefix=/usr \
-Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 \
-Dmksymlinks -Dsrc=${SRCDIR} -Duse64bitint -Duseshrplib \
- -Dusethreads=y -Ulocincpth='' -Dusegdbm=false
+ -Dusethreads=y -Ulocincpth='' -Ui_gdbm -Dnoextensions=GDBM_File
.if !defined(TARGET_ARCH)
TARGET_ARCH!= /usr/bin/uname -p
@@ -62,9 +62,9 @@
cd ${.OBJDIR} && LD_LIBRARY_PATH=${.OBJDIR}:${DESTDIR}/lib ./perl installperl --destdir=${DESTDIR}
.if ${TARGET_ARCH} == "i386"
- ln -fs ${DESTDIR}${LIBDIR}/perl5/5.18.0/${TARGET_ARCH}-midnightbsd-64int/CORE/libperl.so ${DESTDIR}${LIBDIR}/libperl.so
+ ln -fs ${DESTDIR}${LIBDIR}/perl5/5.18.2/${TARGET_ARCH}-midnightbsd-64int/CORE/libperl.so ${DESTDIR}${LIBDIR}/libperl.so
.else
- ln -fs ${DESTDIR}${LIBDIR}/perl5/5.18.0/${TARGET_ARCH}-midnightbsd/CORE/libperl.so ${DESTDIR}${LIBDIR}/libperl.so
+ ln -fs ${DESTDIR}${LIBDIR}/perl5/5.18.2/${TARGET_ARCH}-midnightbsd/CORE/libperl.so ${DESTDIR}${LIBDIR}/libperl.so
.endif
#
More information about the Midnightbsd-cvs
mailing list