see plug-ins/perl/Changes

This commit is contained in:
Marc Lehmann 1999-05-08 00:59:38 +00:00
parent 2147db9740
commit 339d3e6a1f
2 changed files with 3 additions and 0 deletions

View file

@ -1,5 +1,7 @@
Revision history for Gimp-Perl extension.
- fixed sunos/solaris socketpair "protocol not implemented" problem.
1.081 Thu May 6 19:33:37 CEST 1999
- added "oneliners".
- startet implementing Gimp::Module, for embedding perl directly into

View file

@ -142,6 +142,7 @@ sub start_server {
$server_fh=local *FH;
my $gimp_fh=local *FH;
socketpair $server_fh,$gimp_fh,PF_UNIX,SOCK_STREAM,AF_UNIX
or socketpair $server_fh,$gimp_fh,PF_UNIX,SOCK_STREAM,PF_UNSPEC
or croak "unable to create socketpair for gimp communications: $!";
$gimp_pid = fork;
if ($gimp_pid > 0) {