summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPino Toscano <pino@debian.org>2011-10-31 19:21:27 +0000
committerRicardo Signes <rjbs@cpan.org>2012-08-09 16:04:11 -0400
commite15fdbc5407d0db6fd61546e55babb7210202362 (patch)
tree1e4174fcafa15cd7c2881fa8d0a17f541ee3eb2a
parent2c64560768ecc24073275e2722b300e6e5e38eb9 (diff)
downloadperl-e15fdbc5407d0db6fd61546e55babb7210202362.tar.gz
Add GNU/Hurd hints for NDBM_File
currently, there are few tests failing because of a broken NDBM module; using the same hints as used on Linux (given that apparently the cause is the same) makes the following tests pass: t/op/dbm.t cpan/autodie/t/dbmopen.t cpan/Memoize/t/errors.t cpan/Memoize/t/tie_ndbm.t ext/NDBM_File/t/ndbm.t lib/AnyDBM_File.t Dominic Hargreaves adds: Note that the original git commit log [what you see above] lists some tests which aren't affected in blead.
-rw-r--r--MANIFEST1
-rw-r--r--ext/NDBM_File/hints/gnu.pl1
2 files changed, 2 insertions, 0 deletions
diff --git a/MANIFEST b/MANIFEST
index 250472811a..fc118387ce 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -3461,6 +3461,7 @@ ext/NDBM_File/hints/dec_osf.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/dynixptx.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/gnukfreebsd.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/gnuknetbsd.pl Hint for NDBM_File for named architecture
+ext/NDBM_File/hints/gnu.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/linux.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/sco.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/solaris.pl Hint for NDBM_File for named architecture
diff --git a/ext/NDBM_File/hints/gnu.pl b/ext/NDBM_File/hints/gnu.pl
new file mode 100644
index 0000000000..db63567966
--- /dev/null
+++ b/ext/NDBM_File/hints/gnu.pl
@@ -0,0 +1 @@
+do './hints/linux.pl' or die $@;