diff options
author | tobez <tobez@FreeBSD.org> | 2006-03-06 18:15:34 +0800 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2006-03-06 18:15:34 +0800 |
commit | 8265a75c3058a0e13637409ae68d631c0899515e (patch) | |
tree | 2704017ed82e3b79f512505d1aa6bc75819d88e7 /lang | |
parent | b2773cb47a548852d86490c648f3ee1f5e8a0106 (diff) | |
download | freebsd-ports-gnome-8265a75c3058a0e13637409ae68d631c0899515e.tar.gz freebsd-ports-gnome-8265a75c3058a0e13637409ae68d631c0899515e.tar.zst freebsd-ports-gnome-8265a75c3058a0e13637409ae68d631c0899515e.zip |
Add forgotten patch for the previous commit:
Fix PerlIO-related coredump. While at it, use EXAMPLESDIR throughout.
Bump PORTREVISION.
PR: 93981
Submitted by: Matthias Meyser <Meyser@xenet.de>
Approved by: portmgr (erwin)
Diffstat (limited to 'lang')
-rw-r--r-- | lang/eperl/files/patch-eperl_perl5.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lang/eperl/files/patch-eperl_perl5.h b/lang/eperl/files/patch-eperl_perl5.h new file mode 100644 index 000000000000..da2f9083d0c9 --- /dev/null +++ b/lang/eperl/files/patch-eperl_perl5.h @@ -0,0 +1,19 @@ +$FreeBSD$ + +--- eperl_perl5.h.orig Fri Jul 10 07:52:13 1998 ++++ eperl_perl5.h Wed Mar 1 12:12:32 2006 +@@ -43,10 +43,10 @@ + + + /* try to adjust for PerlIO handling */ +-#ifdef USE_PERLIO +-#undef fwrite +-#define fwrite(buf,size,count,f) PerlIO_write(f,buf,size*count) +-#endif ++/* #ifdef USE_PERLIO */ ++/* #undef fwrite */ ++/* #define fwrite(buf,size,count,f) PerlIO_write(f,buf,size*count) */ ++/* #endif */ + + + /* define the I/O type string for verbosity */ |