-
Notifications
You must be signed in to change notification settings - Fork 579
Not OK: perl 5.00561 on dos-djgpp djgpp (UNINSTALLED) #462
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
From [email protected]Some problems: 1, Some filenames are still not 8.3 friendly, such as: ext/B/defsubs.h.PL lib/unicode/In/MiscellaneousTechnical.pl and some others... I'm only worried about the first 3, especially defsubs.h.PL. 2, There is an error compiling sv.c: `sh cflags libperl.a sv.o` sv.c I used this patch (which only fixed the problem for me): Inline Patch--- sv.h~ Wed Sep 1 01:00:06 1999
+++ sv.h Wed Sep 1 01:00:18 1999
@@ -692,7 +692,7 @@
#define isGV(sv) (SvTYPE(sv) == SVt_PVGV)
-#if !defined(DOSISH) || defined(WIN32) || defined(OS2)
+#if !defined(DOSISH) || defined(WIN32) || defined(OS2) || defined(DJGPP)
# define SvGROW(sv,len) (SvLEN(sv) < (len) ? sv_grow(sv,len) : SvPVX(sv))
# define Sv_Grow sv_grow
#else
4, Here is the result of `make test': io/dup..............FAILED test 7 pragma/warning......PROG: lib/io_unix.........Can't locate Socket.pm in @INC (@INC contains: ../lib ../lib ../lib ../lib ./lib/perl5 ./lib/perl5/site ./lib/perl5/site . ./lib/perl5 ./lib/perl5/site ./lib/perl5/site .) at ../lib/IO/Socket.pm line 12. lib/posix...........Confused test output: test 9 answered after test 10 The posix.t failures were expected. I'll post some patches after more testing. Laszlo ps : Perl was built in dosemu under linux :-) Perl Info
|
Migrated from rt.perl.org#1303 (status was 'resolved')
Searchable as RT1303$
The text was updated successfully, but these errors were encountered: