Ticket #13 (closed defect: fixed)

Opened 2 years ago

Last modified 9 months ago

Broken build on Solaris 10

Reported by: anonymous Assigned to: bart
Priority: major Milestone: 0.9.5
Component: eAccelerator Version: 0.9.5
Keywords: Solaris 10 Cc:

Description

The current source (fetched via svn) does not build under Solaris 10 due to an undefined O_RDONLY reference. This patch fixes it:

Index: ea_info.c =================================================================== --- ea_info.c (revision 183) +++ ea_info.c (working copy) @@ -33,6 +33,8 @@

#include "zend.h" #include "fopen_wrappers.h"

+#include <fcntl.h> +

#ifndef O_BINARY # define O_BINARY 0 #endif

Change History

03/08/06 21:38:20 changed by jwm@horde.net

Oops, I should have included my e-mail address when opening, sorry!

03/08/06 21:41:22 changed by bart@zoeloelip.be

  • owner changed from somebody to bart.
  • status changed from new to assigned.

I'll fix this later this evening. Thanks for the feedback!

03/09/06 01:35:34 changed by bart

  • status changed from assigned to closed.
  • version set to 0.9.5.
  • resolution set to fixed.
  • milestone set to 0.9.5.

I've fixed this in revision [184]. You can get snapshots from http://snapshots.eaccelerator.net Thanks for your help!

08/11/07 10:50:17 changed by Solarisaddict

  • keywords set to Solaris 10.