php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #59750 Unknown: apc_fcntl_unlock failed
Submitted: 2011-05-05 04:09 UTC Modified: 2011-08-26 13:53 UTC
From: pear at kingsquare dot nl Assigned:
Status: Closed Package: APC (PECL)
PHP Version: 5.3.2 OS: Ubuntu 10.04.2 LTS
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: pear at kingsquare dot nl
New email:
PHP Version: OS:

 

 [2011-05-05 04:09 UTC] pear at kingsquare dot nl
Description:
------------
After installation of APC-3.1.8 on a clean Ubuntu 10.04.2 
server instance (virtual) the newest APC version crashes the 
entire PHP process resulting in these errors:
[Thu May 05 09:57:59 2011] [error] [client x.x.x.x] PHP Fatal 
error:  Unknown: apc_fcntl_unlock failed: in Unknown on line 0

Reverting to 3.1.6 solved the issue.

Reproduce code:
---------------
Perform a clean install


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2011-05-06 09:30 UTC] josh dot varner at interworks dot com
This also occurs with PHP 5.3.6 (apache2handler SAPI) on MacOS 
X 10.6.7.
 [2011-05-11 08:28 UTC] angelius dot tenshi at gmail dot com
Same goes to me...
MacOS X 10.6.7
PHP 5.3.6 (cli) (built: May 11 2011 15:37:52) 
Copyright (c) 1997-2011 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies
    with Xdebug v2.1.1, Copyright (c) 2002-2011, by Derick Rethans

---- Configure output ----
checking whether we should use pthread mutex locking... yes
Unable to set PTHREAD_PROCESS_SHARED (pthread_mutexattr_setpshared), your system may not support shared mutex's.
configure: WARNING: It doesn't appear that pthread mutexes are supported on your system
checking whether we should use pthread read/write locking... no
--------------------------

---- PHP Error ----
[angelius@angelius-imac /Volumes/ramdisk/php-5.3.6]$ php apc.php 
PHP Fatal error:  Unknown: apc_fcntl_unlock failed: in Unknown on line 0

Fatal error: Unknown: apc_fcntl_unlock failed: in Unknown on line 0
-------------------
 [2011-05-14 20:58 UTC] ddrtist at gmail dot com
Also cannot start PHP with APC installed on Mac OS X Snow 
Leopard (PHP 5.3.4).

brew install pcre # for new headers
sudo pecl install apc

Restart web server in System Preferences
Fatal error: Unknown: apc_fcntl_unlock failed: in Unknown on 
line 0
 [2011-05-17 16:22 UTC] admin at xaker1 dot ru
FreeBSD 8.0 amd64
After install /usr/ports/www/pecl-APC/ Unknown: apc_fcntl_unlock failed on sites.
php 5.2.17
 [2011-05-17 16:30 UTC] rasmus@php.net
Are you guys explicitly enabling fcntl locking? If so, why? 
It shouldn't break, obviously, but there are much faster 
locking mechanisms available.

Try: --enable-apc-pthreadrwlocks
or --enable-apc-pthreadmutex (which is the default)
 [2011-05-17 17:45 UTC] pecl at spam dot lifeforms dot nl
A default install of the pecl-APC port on FreeBSD 8.x (amd64) 
exhibits this problem on every script invocation.

fcntl() locking is its default. Is this discouraged for the 
general user? If so, I'll try to contact the FreeBSD port 
maintainer about it.

I can confirm that switching to sysv IPC semaphores 
(WITH_SEMAPHORES) resolves the issue.
 [2011-05-17 17:48 UTC] rasmus@php.net
Well, we switched the default away from fcntl locking years 
ago. I'll see if I can track down why it is failing, but I 
haven't used that slow locking mechanism in many many years.
 [2011-05-18 07:36 UTC] tremere at cainites dot net
FreeBSD 8.2 and lower (not sure about 9 yet!) do not support 
PTHREAD_PROCESS_SHARED mode for mutexes nor rwlocks.

This is why it falls back to fcntl.

Using semaphores on FBSD 8.2 didn't work for me, because 
after a while (several hours after startup) it starts 
causing trouble:
2011-05-18 09:05:56: (mod_fastcgi.c.2701) FastCGI-stderr: 
PHP Fatal error:  Unkn
own: apc_sem_lock: semop(131080) failed: in Unknown on line 
0

I've switched to spinlocks now which seem to fix things for 
now, but spinlocks are slower on non-SMP systems than 
mutexes.

A fix for fcntl would be most desirable, since this worked 
flawlessly until version 3.1.8+
 [2011-05-19 19:47 UTC] mcs at sunwave dot net
I'm also having this issue.

FreeBSD 7.3 - had to enable spinlocks in order for it to work.

A fix for fcntl would be appreciated.
 [2011-05-21 07:51 UTC] mikkel at hoegh dot org
Also a problem on FreeBSD 8.1/AMD 64.
 [2011-05-21 07:54 UTC] pierre dot php at gmail dot com
IIRC, fcntl is not about mutex but file based locks.
 [2011-05-22 13:06 UTC] gopalv@php.net
Taking a look at this.

But shouldn't apply for Ubuntu LTS people.
 [2011-05-22 13:56 UTC] gopalv@php.net
Fixed in svn

http://news.php.net/php.pecl.cvs/15669

Sorry about that, never had fcntl as a release acceptance test.

Please test and confirm.
 [2011-05-23 05:16 UTC] chris at argeweb dot nl
It works! (FreeBSD 8.2 AMD64)
 [2011-05-23 07:48 UTC] gopalv@php.net
Please add a patch to bsd-ports for now. 

This'll go in with the next release, when I've got some of the newer bugs out of the way.
 [2011-05-23 14:32 UTC] alexandr dot kovalenko at gmail dot com
FreeBSD 8.2 amd64 - patch fixes issue
FreeBSD 7.4 amd64 - patch fixes issue
 [2011-05-26 16:13 UTC] oscar at oscarm dot org
Patch at http://news.php.net/php.pecl.cvs/15669 

Fixed it for me on Mac 10.7.0 with stock php 5.3.4
 [2011-06-01 01:11 UTC] alexandr dot kovalenko at gmail dot com
Patch commited to FreeBSD Ports Collection:

http://www.freebsd.org/cgi/cvsweb.cgi/ports/www/pecl-APC/Makefile
 [2011-06-01 17:31 UTC] php at lonbinder dot com
Perhaps I'm doing this wrong, but I just grabbed apc (pecl install apc) and am getting this issue.  

PEAR Version: 1.9.2
PHP Version: 5.3.6
Zend Engine Version: 2.3.0
Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386 i386

Do I need to do something different to grab what's in SVN?  I tried to install apc-devel (as well as alpha, beta) all say 3.1.9.
 [2011-06-13 18:27 UTC] teddy at chemicalfusion dot net
Add me to the club for getting this.  I'm running Mac OS X 10.6.7 with the stock Apache & PHP.

PHP is 5.3.4
Apache is 2.2.17
APC installed is 3.1.9 (via sudo pecl install apc, then added extension=apc.so to php.ini)

I get...
Fatal error: Unknown: apc_fcntl_unlock failed: in Unknown on line 0
 [2011-06-15 15:56 UTC] jeremyquinton at gmail dot com
The patch works for me to. 
Mac osx 10.7.4.

This is what I did to get it working cause its not clear here when you ready that the patch works. 3.1.9 needs to be patched.

You can get the package source here
http://pecl.php.net/package/apc
Apply the patch you can do it by hand by editing the file or using the patch command. The file is apc_lock.h
once you have unzipped it apply the patch and the follow the instructions in the INSTALL text file.

Hopes this helps. Can someone release apc 3.1.10?
 [2011-08-04 17:12 UTC] adam at acdinternet dot com
Mac OS X 10.6.8. 'sudo pecl install apc' installs but when trying to access a .php on localhost you get 

"Unknown: apc_fcntl_unlock failed: in Unknown on line 0"

So 'sudo pecl uninstall apc'

I tried installing APC from source (./configure and whatnot). Don't bother: I couldn't get it to compile (all make test fail) and in the end there's an easier way. 

sudo pecl install apc-beta
//When it asks you the questions during install:
//Say YES to spinlocks.
//Saw NO to pthreadm utex locks

This may well work with the normal 'apc' package, since as this thread shows, the main issue is with the file locking mechanism. Dare to take the non-defaults and it works fine. But I got it working the 'apc-beta' so I'll stick with that (this is only a dev machine).

Carry on!
 [2011-08-04 18:20 UTC] gopalv@php.net
The OS X bug makes sense - somehow the pthreadmutex version is failing to get turned on and it's reverting the the old fcntl version.

Unfortunately, I don't have an OSX box to test why the ./configure picks fcntl (and not pthread*)
 [2011-08-26 13:16 UTC] luke at cywh dot com
This is still a problem with APC 3.1.9 and PHP 5.3.8 on Mac OS 
X 10.6. The patch provided in this bug report fixes the 
problem though.
 [2011-08-26 13:53 UTC] gopalv@php.net
Just for closure, can you please post the config.h & config.log from the OS X machine?

So that I can figure out why it is avoiding the pthread* version?
 [2011-09-14 01:09 UTC] pecl at keithws dot net
I experienced the same problem as luke, same versions.  Here are the config.h and config.log files from my system.

config.h:
---------
/* config.h.  Generated from config.h.in by configure.  */
/* config.h.in.  Generated from configure.in by autoheader.  */

/* */
#define APC_FCNTL_LOCKS 1

/* */
/* #undef APC_FILEHITS */

/* */
#define APC_HAVE_LOOKUP_HOOKS 0

/* shm/mmap memory protection */
/* #undef APC_MEMPROTECT */

/* */
#define APC_MMAP 1

/* */
/* #undef APC_PTHREADMUTEX_LOCKS */

/* */
/* #undef APC_PTHREADRW_LOCKS */

/* */
/* #undef APC_SEM_LOCKS */

/* */
/* #undef APC_SPIN_LOCKS */

/* Whether to build apc as dynamic module */
#define COMPILE_DL_APC 1

/* */
#define HAVE_APC 1

/* Define this if your target compiler supports builtin atomics */
#define HAVE_ATOMIC_OPERATIONS 1

/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1

/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1

/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1

/* */
#define HAVE_SEMUN 1

/* Define to 1 if you have the `sigaction' function. */
#define HAVE_SIGACTION 1

/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1

/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1

/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1

/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1

/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1

/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1

/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1

/* enable valgrind memchecks */
/* #undef HAVE_VALGRIND_MEMCHECK_H */

/* Define to 1 if your C compiler doesn't accept -c and -o together. */
/* #undef NO_MINUS_C_MINUS_O */

/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT ""

/* Define to the full name of this package. */
#define PACKAGE_NAME ""

/* Define to the full name and version of this package. */
#define PACKAGE_STRING ""

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME ""

/* Define to the version of this package. */
#define PACKAGE_VERSION ""

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

/* */
/* #undef __DEBUG_APC__ */



config.log:
-----------

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.61.  Invocation command line was

  $ ./configure --prefix=/usr/local/Cellar/apc/3.1.9

## --------- ##
## Platform. ##
## --------- ##

hostname = serafina.local.
uname -m = i386
uname -r = 10.8.0
uname -s = Darwin
uname -v = Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386

/usr/bin/uname -p = i386
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = Mach kernel version:
	 Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
Kernel configured for up to 4 processors.
2 processors are physically available.
4 processors are logically available.
Processor type: i486 (Intel 80486)
Processors active: 0 1 2 3
Primary memory available: 8.00 gigabytes
Default processor set: 125 tasks, 458 threads, 4 processors
Load average: 0.85, Mach factor: 3.13
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /Users/kshaw/.gem/ruby/1.8/bin
PATH: /usr/local/share/npm/bin
PATH: ~/Scripts
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/local/sbin
PATH: /usr/sbin
PATH: /sbin
PATH: /usr/X11/bin
PATH: /usr/local/Library/Contributions/examples


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1907: checking for grep that handles long lines and -e
configure:1981: result: /usr/bin/grep
configure:1986: checking for egrep
configure:2064: result: /usr/bin/grep -E
configure:2069: checking for a sed that does not truncate output
configure:2123: result: /usr/bin/sed
configure:2318: checking for C compiler version
configure:2325: /usr/bin/gcc-4.2 --version >&5
i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5664)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:2328: $? = 0
configure:2335: /usr/bin/gcc-4.2 -v >&5
Using built-in specs.
Target: i686-apple-darwin10
Configured with: /var/tmp/gcc/gcc-5664~38/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --
enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-
darwin10 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-
dir=/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Apple Inc. build 5664)
configure:2338: $? = 0
configure:2345: /usr/bin/gcc-4.2 -V >&5
gcc-4.2: argument to `-V' is missing
configure:2348: $? = 1
configure:2371: checking for C compiler default output file name
configure:2398: /usr/bin/gcc-4.2 -O3 -march=core2 -w -pipe   conftest.c  >&5
configure:2401: $? = 0
configure:2439: result: a.out
configure:2456: checking whether the C compiler works
configure:2466: ./a.out
configure:2469: $? = 0
configure:2486: result: yes
configure:2493: checking whether we are cross compiling
configure:2495: result: no
configure:2498: checking for suffix of executables
configure:2505: /usr/bin/gcc-4.2 -o conftest -O3 -march=core2 -w -pipe   conftest.c  >&5
configure:2508: $? = 0
configure:2532: result: 
configure:2538: checking for suffix of object files
configure:2564: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:2567: $? = 0
configure:2590: result: o
configure:2594: checking whether we are using the GNU C compiler
configure:2623: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:2629: $? = 0
configure:2646: result: yes
configure:2651: checking whether /usr/bin/gcc-4.2 accepts -g
configure:2681: /usr/bin/gcc-4.2 -c -g  conftest.c >&5
configure:2687: $? = 0
configure:2786: result: yes
configure:2803: checking for /usr/bin/gcc-4.2 option to accept ISO C89
configure:2877: /usr/bin/gcc-4.2  -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:2883: $? = 0
configure:2906: result: none needed
configure:2930: checking how to run the C preprocessor
configure:2970: /usr/bin/gcc-4.2 -E  conftest.c
configure:2976: $? = 0
configure:3007: /usr/bin/gcc-4.2 -E  conftest.c
conftest.c:8:28: error: ac_nonexistent.h: No such file or directory
configure:3013: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3046: result: /usr/bin/gcc-4.2 -E
configure:3075: /usr/bin/gcc-4.2 -E  conftest.c
configure:3081: $? = 0
configure:3112: /usr/bin/gcc-4.2 -E  conftest.c
conftest.c:8:28: error: ac_nonexistent.h: No such file or directory
configure:3118: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3158: checking for icc
configure:3171: result: no
configure:3185: checking for suncc
configure:3198: result: no
configure:3213: checking whether /usr/bin/gcc-4.2 and cc understand -c and -o together
configure:3248: /usr/bin/gcc-4.2 -c conftest.c -o conftest2.o >&5
configure:3251: $? = 0
configure:3257: /usr/bin/gcc-4.2 -c conftest.c -o conftest2.o >&5
configure:3260: $? = 0
configure:3271: cc -c conftest.c >&5
configure:3274: $? = 0
configure:3282: cc -c conftest.c -o conftest2.o >&5
configure:3285: $? = 0
configure:3291: cc -c conftest.c -o conftest2.o >&5
configure:3294: $? = 0
configure:3312: result: yes
configure:3328: checking for system library directory
configure:3343: result: lib
configure:3350: checking if compiler supports -R
configure:3379: /usr/bin/gcc-4.2 -o conftest -O3 -march=core2 -w -pipe   conftest.c -R /usr/lib  >&5
ld: in /usr/lib, can't map file, errno=22
collect2: ld returned 1 exit status
configure:3385: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:3404: result: no
configure:3409: checking if compiler supports -Wl,-rpath,
configure:3438: /usr/bin/gcc-4.2 -o conftest -O3 -march=core2 -w -pipe   conftest.c -Wl,-rpath,/usr/lib  >&5
configure:3444: $? = 0
configure:3463: result: yes
configure:3512: checking build system type
configure:3530: result: i386-apple-darwin10.8.0
configure:3552: checking host system type
configure:3567: result: i386-apple-darwin10.8.0
configure:3589: checking target system type
configure:3604: result: i386-apple-darwin10.8.0
configure:3713: checking for PHP prefix
configure:3715: result: /usr/local/Cellar/php/5.3.8
configure:3717: checking for PHP includes
configure:3719: result: -I/usr/local/Cellar/php/5.3.8/include/php -I/usr/local/Cellar/php/5.3.8/include/php/main -
I/usr/local/Cellar/php/5.3.8/include/php/TSRM -I/usr/local/Cellar/php/5.3.8/include/php/Zend -
I/usr/local/Cellar/php/5.3.8/include/php/ext -I/usr/local/Cellar/php/5.3.8/include/php/ext/date/lib
configure:3721: checking for PHP extension directory
configure:3723: result: /usr/local/Cellar/php/5.3.8/lib/php/extensions/no-debug-non-zts-20090626
configure:3725: checking for PHP installed headers prefix
configure:3727: result: /usr/local/Cellar/php/5.3.8/include/php
configure:3730: checking if debug is enabled
configure:3760: result: no
configure:3763: checking if zts is enabled
configure:3793: result: no
configure:3867: checking for re2c
configure:3897: result: no
configure:3922: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
configure:3936: checking for gawk
configure:3967: result: no
configure:3936: checking for nawk
configure:3967: result: no
configure:3936: checking for awk
configure:3953: found /usr/bin/awk
configure:3964: result: awk
configure:3989: checking if awk is broken
configure:3998: result: no
configure:4012: checking whether to enable APC support
configure:4051: result: yes, shared
configure:4069: checking whether we should enable cache request file info
configure:4081: result: no
configure:4087: checking whether we should use mmap
configure:4099: result: yes
configure:4105: checking whether we should use semaphore locking instead of fcntl
configure:4117: result: no
configure:4123: checking whether we should use pthread mutex locking
configure:4135: result: yes
configure:4204: /usr/bin/gcc-4.2 -o conftest -O3 -march=core2 -w -pipe   conftest.c  -lpthread >&5
configure:4207: $? = 0
configure:4213: ./conftest
configure:4216: $? = 255
configure: program exited with status 255
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| 
| 				#include <sys/types.h>
| 				#include <pthread.h>
|                                 main() {
| 				pthread_mutex_t mutex;
| 				pthread_mutexattr_t attr;
| 
| 				if(pthread_mutexattr_init(&attr)) {
| 					puts("Unable to initialize pthread attributes (pthread_mutexattr_init).");
| 					return -1;
| 				}
| 				if(pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED)) {
| 					puts("Unable to set PTHREAD_PROCESS_SHARED (pthread_mutexattr_setpshared), your system may 
not support shared mutex's.");
| 					return -1;
| 				}
| 				if(pthread_mutex_init(&mutex, &attr)) {
| 					puts("Unable to initialize the mutex (pthread_mutex_init).");
| 					return -1;
| 				}
| 				if(pthread_mutexattr_destroy(&attr)) {
| 					puts("Unable to destroy mutex attributes (pthread_mutexattr_destroy).");
| 					return -1;
| 				}
| 				if(pthread_mutex_destroy(&mutex)) {
| 					puts("Unable to destroy mutex (pthread_mutex_destroy).");
| 					return -1;
| 				}
| 
| 				puts("pthread mutexs are supported!");
| 				return 0;
|                                 }
| 
configure:4235: WARNING: It doesn't appear that pthread mutexes are supported on your system
configure:4247: checking whether we should use pthread read/write locking
configure:4259: result: no
configure:4372: checking whether the target compiler supports builtin atomics
configure:4405: /usr/bin/gcc-4.2 -o conftest -O3 -march=core2 -w -pipe   conftest.c  >&5
configure:4411: $? = 0
configure:4429: result: yes
configure:4446: checking whether we should use spin locks
configure:4458: result: no
configure:4465: checking whether we should enable memory protection
configure:4477: result: no
configure:4543: checking for zend_set_lookup_function_hook
configure:4577: /usr/bin/gcc-4.2 -c -I/usr/local/Cellar/php/5.3.8/include/php -I/usr/local/Cellar/php/5.3.8/include/php/main -
I/usr/local/Cellar/php/5.3.8/include/php/TSRM -I/usr/local/Cellar/php/5.3.8/include/php/Zend -
I/usr/local/Cellar/php/5.3.8/include/php/ext -I/usr/local/Cellar/php/5.3.8/include/php/ext/date/lib   conftest.c >&5
conftest.c: In function 'main':
conftest.c:19: error: 'zend_set_lookup_function_hook' undeclared (first use in this function)
conftest.c:19: error: (Each undeclared identifier is reported only once
conftest.c:19: error: for each function it appears in.)
configure:4583: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_ATOMIC_OPERATIONS 1
| #define APC_MMAP 1
| #define APC_FCNTL_LOCKS 1
| /* end confdefs.h.  */
| 
| #include "main/php.h"
| #include "Zend/zend_API.h"
| 
| int
| main ()
| {
| #ifndef zend_set_lookup_function_hook
| 	(void) zend_set_lookup_function_hook;
| #endif
|   ;
|   return 0;
| }
configure:4604: result: no
configure:4624: checking for sigaction
configure:4680: /usr/bin/gcc-4.2 -o conftest -O3 -march=core2 -w -pipe   conftest.c  >&5
configure:4686: $? = 0
configure:4704: result: yes
configure:4714: checking for union semun
configure:4745: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:4751: $? = 0
configure:4771: result: yes
configure:4787: checking whether we should enable valgrind support
configure:4789: checking for ANSI C header files
configure:4819: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:4825: $? = 0
configure:4924: /usr/bin/gcc-4.2 -o conftest -O3 -march=core2 -w -pipe   conftest.c  >&5
configure:4927: $? = 0
configure:4933: ./conftest
configure:4936: $? = 0
configure:4953: result: yes
configure:4977: checking for sys/types.h
configure:4998: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for sys/stat.h
configure:4998: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for stdlib.h
configure:4998: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for string.h
configure:4998: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for memory.h
configure:4998: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for strings.h
configure:4998: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for inttypes.h
configure:4998: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for stdint.h
configure:4998: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for unistd.h
configure:4998: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:5042: result: yes
configure:5054: checking valgrind/memcheck.h usability
configure:5071: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
conftest.c:57:31: error: valgrind/memcheck.h: No such file or directory
configure:5077: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_ATOMIC_OPERATIONS 1
| #define APC_MMAP 1
| #define APC_FCNTL_LOCKS 1
| #define APC_HAVE_LOOKUP_HOOKS 0
| #define HAVE_SIGACTION 1
| #define HAVE_SEMUN 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <valgrind/memcheck.h>
configure:5091: result: no
configure:5095: checking valgrind/memcheck.h presence
configure:5110: /usr/bin/gcc-4.2 -E  conftest.c
conftest.c:24:31: error: valgrind/memcheck.h: No such file or directory
configure:5116: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_ATOMIC_OPERATIONS 1
| #define APC_MMAP 1
| #define APC_FCNTL_LOCKS 1
| #define APC_HAVE_LOOKUP_HOOKS 0
| #define HAVE_SIGACTION 1
| #define HAVE_SEMUN 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <valgrind/memcheck.h>
configure:5130: result: no
configure:5158: checking for valgrind/memcheck.h
configure:5165: result: no
configure:5300: checking for shm_open in -lrt
configure:5335: /usr/bin/gcc-4.2 -o conftest -O3 -march=core2 -w -pipe   conftest.c -lrt   >&5
ld: library not found for -lrt
collect2: ld returned 1 exit status
configure:5341: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_ATOMIC_OPERATIONS 1
| #define APC_MMAP 1
| #define APC_FCNTL_LOCKS 1
| #define APC_HAVE_LOOKUP_HOOKS 0
| #define HAVE_SIGACTION 1
| #define HAVE_SEMUN 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char shm_open ();
| int
| main ()
| {
| return shm_open ();
|   ;
|   return 0;
| }
configure:5359: result: no
configure:5817: checking for ld used by /usr/bin/gcc-4.2
configure:5884: result: /usr/bin/gcc-4.2
configure:5893: checking if the linker (/usr/bin/gcc-4.2) is GNU ld
configure:5908: result: no
configure:5913: checking for /usr/bin/gcc-4.2 option to reload object files
configure:5920: result: -r
configure:5938: checking for BSD-compatible nm
configure:5987: result: /usr/bin/nm
configure:5991: checking whether ln -s works
configure:5995: result: yes
configure:6002: checking how to recognize dependent libraries
configure:6188: result: pass_all
configure:6440: checking dlfcn.h usability
configure:6457: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:6463: $? = 0
configure:6477: result: yes
configure:6481: checking dlfcn.h presence
configure:6496: /usr/bin/gcc-4.2 -E  conftest.c
configure:6502: $? = 0
configure:6516: result: yes
configure:6544: checking for dlfcn.h
configure:6552: result: yes
configure:6577: checking the maximum length of command line arguments
configure:6689: result: 196608
configure:6701: checking command to parse /usr/bin/nm output from /usr/bin/gcc-4.2 object
configure:6806: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:6809: $? = 0
configure:6813: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ 	]\([BCDEGRST][BCDEGRST]*\)[ 	][ 	]*\([_A-Za-z][_A-Za-z0-
9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:6816: $? = 0
cannot find nm_test_var in conftest.nm
configure:6806: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  conftest.c >&5
configure:6809: $? = 0
configure:6813: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ 	]\([BCDEGRST][BCDEGRST]*\)[ 	][ 	]*_\([_A-Za-z][_A-Za-z0-
9]*\)$/\1 _\2 \2/p' \> conftest.nm
configure:6816: $? = 0
configure:6868: /usr/bin/gcc-4.2 -o conftest -O3 -march=core2 -w -pipe   conftest.c conftstm.o >&5
configure:6871: $? = 0
configure:6909: result: ok
configure:6913: checking for objdir
configure:6928: result: .libs
configure:7020: checking for ar
configure:7036: found /usr/bin/ar
configure:7047: result: ar
configure:7116: checking for ranlib
configure:7132: found /usr/bin/ranlib
configure:7143: result: ranlib
configure:7212: checking for strip
configure:7228: found /usr/bin/strip
configure:7239: result: strip
configure:7496: checking for dsymutil
configure:7512: found /usr/bin/dsymutil
configure:7523: result: dsymutil
configure:7592: checking for nmedit
configure:7608: found /usr/bin/nmedit
configure:7619: result: nmedit
configure:7646: checking for -single_module linker flag
configure:7667: result: yes
configure:7669: checking for -exported_symbols_list linker flag
configure:7685: /usr/bin/gcc-4.2 -o conftest -O3 -march=core2 -w -pipe   -Wl,-exported_symbols_list,conftest.sym conftest.c  >&5
configure:7688: $? = 0
configure:7702: result: yes
configure:7820: checking if /usr/bin/gcc-4.2 supports -fno-rtti -fno-exceptions
configure:7838: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  -fno-rtti -fno-exceptions conftest.c >&5
configure:7842: $? = 0
configure:7855: result: yes
configure:7870: checking for /usr/bin/gcc-4.2 option to produce PIC
configure:8110: result: -fno-common
configure:8118: checking if /usr/bin/gcc-4.2 PIC flag -fno-common works
configure:8136: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  -fno-common -DPIC conftest.c >&5
configure:8140: $? = 0
configure:8153: result: yes
configure:8181: checking if /usr/bin/gcc-4.2 static flag -static works
configure:8209: result: no
configure:8219: checking if /usr/bin/gcc-4.2 supports -c -o file.o
configure:8240: /usr/bin/gcc-4.2 -c -O3 -march=core2 -w -pipe  -o out/conftest2.o conftest.c >&5
configure:8244: $? = 0
configure:8266: result: yes
configure:8292: checking whether the /usr/bin/gcc-4.2 linker (/usr/bin/gcc-4.2) supports shared libraries
configure:9224: result: yes
configure:9291: checking dynamic linker characteristics
configure:9893: result: darwin10.8.0 dyld
configure:9917: checking how to hardcode library paths into programs
configure:9942: result: immediate
configure:9956: checking whether stripping libraries is possible
configure:9970: result: yes
configure:10763: checking if libtool supports shared libraries
configure:10765: result: yes
configure:10768: checking whether to build shared libraries
configure:10789: result: yes
configure:10792: checking whether to build static libraries
configure:10796: result: no
configure:10891: result:
creating libtool
configure:11628: checking whether the /usr/bin/g++-4.2 linker (/usr/bin/gcc-4.2) supports shared libraries
configure:12526: result: no
configure:12547: /usr/bin/g++-4.2 -c -O3 -march=core2 -w -pipe  conftest.cpp >&5
configure:12550: $? = 0
configure:12706: checking for /usr/bin/g++-4.2 option to produce PIC
configure:12996: result: 
configure:13067: checking if /usr/bin/g++-4.2 static flag  works
configure:13095: result: yes
configure:13105: checking if /usr/bin/g++-4.2 supports -c -o file.o
configure:13126: /usr/bin/g++-4.2 -c -O3 -march=core2 -w -pipe  -o out/conftest2.o conftest.cpp >&5
configure:13130: $? = 0
configure:13152: result: yes
configure:13178: checking whether the /usr/bin/g++-4.2 linker (/usr/bin/gcc-4.2) supports shared libraries
configure:13204: result: no
configure:13271: checking dynamic linker characteristics
configure:13821: result: darwin10.8.0 dyld
configure:13845: checking how to hardcode library paths into programs
configure:13870: result: immediate
configure:14590: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by config.status, which was
generated by GNU Autoconf 2.61.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on serafina.local.

config.status:515: creating config.h

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=i386-apple-darwin10.8.0
ac_cv_c_compiler_gnu=yes
ac_cv_env_CC_set=set
ac_cv_env_CC_value=/usr/bin/gcc-4.2
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-O3 -march=core2 -w -pipe'
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_sigaction=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_valgrind_memcheck_h=no
ac_cv_host=i386-apple-darwin10.8.0
ac_cv_objext=o
ac_cv_path_EGREP='/usr/bin/grep -E'
ac_cv_path_GREP=/usr/bin/grep
ac_cv_prog_AWK=awk
ac_cv_prog_CPP='/usr/bin/gcc-4.2 -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_DSYMUTIL=dsymutil
ac_cv_prog_ac_ct_NMEDIT=nmedit
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc__usr_bin_gcc_4_2_c_o=yes
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_target=i386-apple-darwin10.8.0
lt_cv_apple_cc_single_mod=yes
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_exported_symbols_list=yes
lt_cv_ld_reload_flag=-r
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/gcc-4.2
lt_cv_path_LDCXX=
lt_cv_path_NM=/usr/bin/nm
lt_cv_path_SED=/usr/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_rtti_exceptions=yes
lt_cv_prog_compiler_static_works=no
lt_cv_prog_compiler_static_works_CXX=yes
lt_cv_prog_gnu_ld=no
lt_cv_prog_gnu_ldcxx=
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ 	]\([BCDEGRST][BCDEGRST]*\)[ 	][ 	]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 
\2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/  {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ 
]*\) \([^ ]*\)$/  {"\2", (lt_ptr) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
lt_cv_sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
lt_cv_sys_lib_search_path_spec='/usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64 /usr/lib/i686-apple-darwin10/4.2.1 /usr/lib 
/usr/local/lib'
lt_cv_sys_max_cmd_len=196608
lt_lt_cv_prog_compiler_c_o='"yes"'
lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ 	]\\([BCDEGRST][BCDEGRST]*\\)[ 	][ 	]*_\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 
_\\2 \\2/p'\''"'
lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/  {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e 
'\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/  {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
php_cv_cc_dashr=no
php_cv_cc_rpath=yes
php_cv_semun=yes
php_cv_zend_set_lookup_function_hook=no

## ----------------- ##
## Output variables. ##
## ----------------- ##

AR='ar'
AWK='awk'
CC='/usr/bin/gcc-4.2'
CFLAGS='-O3 -march=core2 -w -pipe'
CONFIGURE_COMMAND=' '\''./configure'\''  '\''--prefix=/usr/local/Cellar/apc/3.1.9'\'''
CONFIGURE_OPTIONS=' '\''--prefix=/usr/local/Cellar/apc/3.1.9'\'''
CPP='/usr/bin/gcc-4.2 -E'
CPPFLAGS=' -DHAVE_CONFIG_H'
DEFS='-DHAVE_CONFIG_H'
DSYMUTIL='dsymutil'
ECHO='/bin/echo'
ECHO_C='ECHO_N=''
ECHO_T=''
EGREP='/usr/bin/grep -E'
EXEEXT=''
GREP='/usr/bin/grep'
LDFLAGS=''
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LN_S='ln -s'
LTLIBOBJS=''
NMEDIT='nmedit'
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
RANLIB='ranlib'
RE2C='exit 0;'
SED='/usr/bin/sed'
SHELL='/bin/sh'
SHLIB_DL_SUFFIX_NAME='so'
SHLIB_SUFFIX_NAME='dylib'
STRIP='strip'
ac_ct_CC=''
bindir='${exec_prefix}/bin'
build='i386-apple-darwin10.8.0'
build_alias=''
build_cpu='i386'
build_os='darwin10.8.0'
build_vendor='apple'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
exec_prefix='$(prefix)'
host='i386-apple-darwin10.8.0'
host_alias='i386-apple-darwin10.8.0'
host_cpu='i386'
host_os='darwin10.8.0'
host_vendor='apple'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local/Cellar/php/5.3.8'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target='i386-apple-darwin10.8.0'
target_alias=''
target_cpu='i386'
target_os='darwin10.8.0'
target_vendor='apple'

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define PACKAGE_NAME ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PACKAGE_STRING ""
#define PACKAGE_BUGREPORT ""
#define HAVE_ATOMIC_OPERATIONS 1
#define APC_MMAP 1
#define APC_FCNTL_LOCKS 1
#define APC_HAVE_LOOKUP_HOOKS 0
#define HAVE_SIGACTION 1
#define HAVE_SEMUN 1
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define COMPILE_DL_APC 1
#define HAVE_APC 1
#define HAVE_DLFCN_H 1

configure: exit 0
 [2011-11-16 23:20 UTC] luke at cywh dot com
This is the config line I used:

./configure --with-php-config=$INSTALL_DIR/bin/php-config --enable-apc-
pthreadmutex

I tried w/ and w/out the extra --enable-apc-pthreadmutex. Same result.

Here is my config.h:

/* config.h.  Generated from config.h.in by configure.  */
/* config.h.in.  Generated from configure.in by autoheader.  */

/* */
#define APC_FCNTL_LOCKS 1

/* */
/* #undef APC_FILEHITS */

/* */
#define APC_HAVE_LOOKUP_HOOKS 0

/* shm/mmap memory protection */
/* #undef APC_MEMPROTECT */

/* */
#define APC_MMAP 1

/* */
/* #undef APC_PTHREADMUTEX_LOCKS */

/* */
/* #undef APC_PTHREADRW_LOCKS */

/* */
/* #undef APC_SEM_LOCKS */

/* */
/* #undef APC_SPIN_LOCKS */

/* Whether to build apc as dynamic module */
#define COMPILE_DL_APC 1

/* */
#define HAVE_APC 1

/* Define this if your target compiler supports builtin atomics */
#define HAVE_ATOMIC_OPERATIONS 1

/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1

/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1

/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1

/* */
#define HAVE_SEMUN 1

/* Define to 1 if you have the `sigaction' function. */
#define HAVE_SIGACTION 1

/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1

/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1

/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1

/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1

/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1

/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1

/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1

/* enable valgrind memchecks */
/* #undef HAVE_VALGRIND_MEMCHECK_H */

/* Define to 1 if your C compiler doesn't accept -c and -o together. */
/* #undef NO_MINUS_C_MINUS_O */

/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT ""

/* Define to the full name of this package. */
#define PACKAGE_NAME ""

/* Define to the full name and version of this package. */
#define PACKAGE_STRING ""

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME ""

/* Define to the version of this package. */
#define PACKAGE_VERSION ""

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

/* */
/* #undef __DEBUG_APC__ */

And here is my config.log:


This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.61.  Invocation command line was

  $ ./configure --with-php-config=/Server/software/bin/php-config --enable-apc-
pthreadmutex

## --------- ##
## Platform. ##
## --------- ##

hostname = Luke-Scotts-Mac-mini.local
uname -m = i386
uname -r = 10.8.0
uname -s = Darwin
uname -v = Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-
1504.15.3~1/RELEASE_I386

/usr/bin/uname -p = i386
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = Mach kernel version:
	 Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-
1504.15.3~1/RELEASE_I386
Kernel configured for up to 2 processors.
2 processors are physically available.
2 processors are logically available.
Processor type: i486 (Intel 80486)
Processors active: 0 1
Primary memory available: 8.00 gigabytes
Default processor set: 182 tasks, 606 threads, 2 processors
Load average: 1.32, Mach factor: 0.93
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /usr/bin
PATH: /bin
PATH: /usr/sbin
PATH: /sbin
PATH: /usr/local/bin
PATH: /usr/X11/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1907: checking for grep that handles long lines and -e
configure:1981: result: /usr/bin/grep
configure:1986: checking for egrep
configure:2064: result: /usr/bin/grep -E
configure:2069: checking for a sed that does not truncate output
configure:2123: result: /usr/bin/sed
configure:2255: checking for cc
configure:2271: found /usr/bin/cc
configure:2282: result: cc
configure:2318: checking for C compiler version
configure:2325: cc --version >&5
i686-apple-darwin10-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) 
(LLVM build 2336.1.00)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:2328: $? = 0
configure:2335: cc -v >&5
Using built-in specs.
Target: i686-apple-darwin10
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.1~3/src/configure --
disable-checking --enable-werror --prefix=/Developer/usr/llvm-gcc-4.2 --
mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- -
-program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --
build=i686-apple-darwin10 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-
2336.1~3/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin10- 
--host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-
dir=/usr/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00)
configure:2338: $? = 0
configure:2345: cc -V >&5
llvm-gcc-4.2: argument to `-V' is missing
configure:2348: $? = 1
configure:2371: checking for C compiler default output file name
configure:2398: cc    conftest.c  >&5
configure:2401: $? = 0
configure:2439: result: a.out
configure:2456: checking whether the C compiler works
configure:2466: ./a.out
configure:2469: $? = 0
configure:2486: result: yes
configure:2493: checking whether we are cross compiling
configure:2495: result: no
configure:2498: checking for suffix of executables
configure:2505: cc -o conftest    conftest.c  >&5
configure:2508: $? = 0
configure:2532: result: 
configure:2538: checking for suffix of object files
configure:2564: cc -c   conftest.c >&5
configure:2567: $? = 0
configure:2590: result: o
configure:2594: checking whether we are using the GNU C compiler
configure:2623: cc -c   conftest.c >&5
configure:2629: $? = 0
configure:2646: result: yes
configure:2651: checking whether cc accepts -g
configure:2681: cc -c -g  conftest.c >&5
configure:2687: $? = 0
configure:2786: result: yes
configure:2803: checking for cc option to accept ISO C89
configure:2877: cc  -c -g -O2  conftest.c >&5
configure:2883: $? = 0
configure:2906: result: none needed
configure:2930: checking how to run the C preprocessor
configure:2970: cc -E  conftest.c
configure:2976: $? = 0
configure:3007: cc -E  conftest.c
conftest.c:8:28: error: ac_nonexistent.h: No such file or directory
configure:3013: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3046: result: cc -E
configure:3075: cc -E  conftest.c
configure:3081: $? = 0
configure:3112: cc -E  conftest.c
conftest.c:8:28: error: ac_nonexistent.h: No such file or directory
configure:3118: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3158: checking for icc
configure:3171: result: no
configure:3185: checking for suncc
configure:3198: result: no
configure:3216: checking whether cc understands -c and -o together
configure:3248: cc -c conftest.c -o conftest2.o >&5
configure:3251: $? = 0
configure:3257: cc -c conftest.c -o conftest2.o >&5
configure:3260: $? = 0
configure:3312: result: yes
configure:3328: checking for system library directory
configure:3343: result: lib
configure:3350: checking if compiler supports -R
configure:3379: cc -o conftest -g -O2   conftest.c -R /usr/lib  >&5
ld: in /usr/lib, can't map file, errno=22 for architecture x86_64
collect2: ld returned 1 exit status
configure:3385: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:3404: result: no
configure:3409: checking if compiler supports -Wl,-rpath,
configure:3438: cc -o conftest -g -O2   conftest.c -Wl,-rpath,/usr/lib  >&5
configure:3444: $? = 0
configure:3463: result: yes
configure:3512: checking build system type
configure:3530: result: i386-apple-darwin10.8.0
configure:3552: checking host system type
configure:3567: result: i386-apple-darwin10.8.0
configure:3589: checking target system type
configure:3604: result: i386-apple-darwin10.8.0
configure:3713: checking for PHP prefix
configure:3715: result: /Server/software
configure:3717: checking for PHP includes
configure:3719: result: -I/Server/software/include/php -
I/Server/software/include/php/main -I/Server/software/include/php/TSRM -
I/Server/software/include/php/Zend -I/Server/software/include/php/ext -
I/Server/software/include/php/ext/date/lib
configure:3721: checking for PHP extension directory
configure:3723: result: /Server/software/lib/php/extensions/no-debug-non-zts-
20090626
configure:3725: checking for PHP installed headers prefix
configure:3727: result: /Server/software/include/php
configure:3730: checking if debug is enabled
configure:3760: result: no
configure:3763: checking if zts is enabled
configure:3793: result: no
configure:3867: checking for re2c
configure:3897: result: no
configure:3922: WARNING: You will need re2c 0.13.4 or later if you want to 
regenerate PHP parsers.
configure:3936: checking for gawk
configure:3967: result: no
configure:3936: checking for nawk
configure:3967: result: no
configure:3936: checking for awk
configure:3953: found /usr/bin/awk
configure:3964: result: awk
configure:3989: checking if awk is broken
configure:3998: result: no
configure:4012: checking whether to enable APC support
configure:4051: result: yes, shared
configure:4069: checking whether we should enable cache request file info
configure:4081: result: no
configure:4087: checking whether we should use mmap
configure:4099: result: yes
configure:4105: checking whether we should use semaphore locking instead of 
fcntl
configure:4117: result: no
configure:4123: checking whether we should use pthread mutex locking
configure:4129: result: yes
configure:4204: cc -o conftest -g -O2   conftest.c  -lpthread >&5
configure:4207: $? = 0
configure:4213: ./conftest
configure:4216: $? = 255
configure: program exited with status 255
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| 
| 				#include <sys/types.h>
| 				#include <pthread.h>
|                                 main() {
| 				pthread_mutex_t mutex;
| 				pthread_mutexattr_t attr;
| 
| 				if(pthread_mutexattr_init(&attr)) {
| 					puts("Unable to initialize pthread 
attributes (pthread_mutexattr_init).");
| 					return -1;
| 				}
| 				if(pthread_mutexattr_setpshared(&attr, 
PTHREAD_PROCESS_SHARED)) {
| 					puts("Unable to set 
PTHREAD_PROCESS_SHARED (pthread_mutexattr_setpshared), your system may not 
support shared mutex's.");
| 					return -1;
| 				}
| 				if(pthread_mutex_init(&mutex, &attr)) {
| 					puts("Unable to initialize the mutex 
(pthread_mutex_init).");
| 					return -1;
| 				}
| 				if(pthread_mutexattr_destroy(&attr)) {
| 					puts("Unable to destroy mutex attributes 
(pthread_mutexattr_destroy).");
| 					return -1;
| 				}
| 				if(pthread_mutex_destroy(&mutex)) {
| 					puts("Unable to destroy mutex 
(pthread_mutex_destroy).");
| 					return -1;
| 				}
| 
| 				puts("pthread mutexs are supported!");
| 				return 0;
|                                 }
| 
configure:4235: WARNING: It doesn't appear that pthread mutexes are supported on 
your system
configure:4247: checking whether we should use pthread read/write locking
configure:4259: result: no
configure:4372: checking whether the target compiler supports builtin atomics
configure:4405: cc -o conftest -g -O2   conftest.c  >&5
configure:4411: $? = 0
configure:4429: result: yes
configure:4446: checking whether we should use spin locks
configure:4458: result: no
configure:4465: checking whether we should enable memory protection
configure:4477: result: no
configure:4543: checking for zend_set_lookup_function_hook
configure:4577: cc -c -I/Server/software/include/php -
I/Server/software/include/php/main -I/Server/software/include/php/TSRM -
I/Server/software/include/php/Zend -I/Server/software/include/php/ext -
I/Server/software/include/php/ext/date/lib   conftest.c >&5
conftest.c: In function 'main':
conftest.c:19: error: 'zend_set_lookup_function_hook' undeclared (first use in 
this function)
conftest.c:19: error: (Each undeclared identifier is reported only once
conftest.c:19: error: for each function it appears in.)
configure:4583: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_ATOMIC_OPERATIONS 1
| #define APC_MMAP 1
| #define APC_FCNTL_LOCKS 1
| /* end confdefs.h.  */
| 
| #include "main/php.h"
| #include "Zend/zend_API.h"
| 
| int
| main ()
| {
| #ifndef zend_set_lookup_function_hook
| 	(void) zend_set_lookup_function_hook;
| #endif
|   ;
|   return 0;
| }
configure:4604: result: no
configure:4624: checking for sigaction
configure:4680: cc -o conftest -g -O2   conftest.c  >&5
configure:4686: $? = 0
configure:4704: result: yes
configure:4714: checking for union semun
configure:4745: cc -c -g -O2  conftest.c >&5
configure:4751: $? = 0
configure:4771: result: yes
configure:4787: checking whether we should enable valgrind support
configure:4789: checking for ANSI C header files
configure:4819: cc -c -g -O2  conftest.c >&5
configure:4825: $? = 0
configure:4924: cc -o conftest -g -O2   conftest.c  >&5
configure:4927: $? = 0
configure:4933: ./conftest
configure:4936: $? = 0
configure:4953: result: yes
configure:4977: checking for sys/types.h
configure:4998: cc -c -g -O2  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for sys/stat.h
configure:4998: cc -c -g -O2  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for stdlib.h
configure:4998: cc -c -g -O2  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for string.h
configure:4998: cc -c -g -O2  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for memory.h
configure:4998: cc -c -g -O2  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for strings.h
configure:4998: cc -c -g -O2  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for inttypes.h
configure:4998: cc -c -g -O2  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for stdint.h
configure:4998: cc -c -g -O2  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:4977: checking for unistd.h
configure:4998: cc -c -g -O2  conftest.c >&5
configure:5004: $? = 0
configure:5020: result: yes
configure:5042: result: yes
configure:5054: checking valgrind/memcheck.h usability
configure:5071: cc -c -g -O2  conftest.c >&5
conftest.c:57:31: error: valgrind/memcheck.h: No such file or directory
configure:5077: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_ATOMIC_OPERATIONS 1
| #define APC_MMAP 1
| #define APC_FCNTL_LOCKS 1
| #define APC_HAVE_LOOKUP_HOOKS 0
| #define HAVE_SIGACTION 1
| #define HAVE_SEMUN 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <valgrind/memcheck.h>
configure:5091: result: no
configure:5095: checking valgrind/memcheck.h presence
configure:5110: cc -E  conftest.c
conftest.c:24:31: error: valgrind/memcheck.h: No such file or directory
configure:5116: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_ATOMIC_OPERATIONS 1
| #define APC_MMAP 1
| #define APC_FCNTL_LOCKS 1
| #define APC_HAVE_LOOKUP_HOOKS 0
| #define HAVE_SIGACTION 1
| #define HAVE_SEMUN 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <valgrind/memcheck.h>
configure:5130: result: no
configure:5158: checking for valgrind/memcheck.h
configure:5165: result: no
configure:5300: checking for shm_open in -lrt
configure:5335: cc -o conftest -g -O2   conftest.c -lrt   >&5
ld: library not found for -lrt
collect2: ld returned 1 exit status
configure:5341: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_ATOMIC_OPERATIONS 1
| #define APC_MMAP 1
| #define APC_FCNTL_LOCKS 1
| #define APC_HAVE_LOOKUP_HOOKS 0
| #define HAVE_SIGACTION 1
| #define HAVE_SEMUN 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char shm_open ();
| int
| main ()
| {
| return shm_open ();
|   ;
|   return 0;
| }
configure:5359: result: no
configure:5817: checking for ld used by cc
configure:5884: result: /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-
darwin10/4.2.1/ld
configure:5893: checking if the linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-
apple-darwin10/4.2.1/ld) is GNU ld
configure:5908: result: no
configure:5913: checking for /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-
darwin10/4.2.1/ld option to reload object files
configure:5920: result: -r
configure:5938: checking for BSD-compatible nm
configure:5987: result: /usr/bin/nm
configure:5991: checking whether ln -s works
configure:5995: result: yes
configure:6002: checking how to recognize dependent libraries
configure:6188: result: pass_all
configure:6440: checking dlfcn.h usability
configure:6457: cc -c -g -O2  conftest.c >&5
configure:6463: $? = 0
configure:6477: result: yes
configure:6481: checking dlfcn.h presence
configure:6496: cc -E  conftest.c
configure:6502: $? = 0
configure:6516: result: yes
configure:6544: checking for dlfcn.h
configure:6552: result: yes
configure:6577: checking the maximum length of command line arguments
configure:6689: result: 196608
configure:6701: checking command to parse /usr/bin/nm output from cc object
configure:6806: cc -c -g -O2  conftest.c >&5
configure:6809: $? = 0
configure:6813: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ 	]\([BCDEGRST]
[BCDEGRST]*\)[ 	][ 	]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:6816: $? = 0
cannot find nm_test_var in conftest.nm
configure:6806: cc -c -g -O2  conftest.c >&5
configure:6809: $? = 0
configure:6813: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ 	]\([BCDEGRST]
[BCDEGRST]*\)[ 	][ 	]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' \> 
conftest.nm
configure:6816: $? = 0
configure:6868: cc -o conftest -g -O2   conftest.c conftstm.o >&5
configure:6871: $? = 0
configure:6909: result: ok
configure:6913: checking for objdir
configure:6928: result: .libs
configure:7020: checking for ar
configure:7036: found /usr/bin/ar
configure:7047: result: ar
configure:7116: checking for ranlib
configure:7132: found /usr/bin/ranlib
configure:7143: result: ranlib
configure:7212: checking for strip
configure:7228: found /usr/bin/strip
configure:7239: result: strip
configure:7496: checking for dsymutil
configure:7512: found /usr/bin/dsymutil
configure:7523: result: dsymutil
configure:7592: checking for nmedit
configure:7608: found /usr/bin/nmedit
configure:7619: result: nmedit
configure:7646: checking for -single_module linker flag
configure:7667: result: yes
configure:7669: checking for -exported_symbols_list linker flag
configure:7685: cc -o conftest -g -O2   -Wl,-exported_symbols_list,conftest.sym 
conftest.c  >&5
configure:7688: $? = 0
configure:7702: result: yes
configure:7820: checking if cc supports -fno-rtti -fno-exceptions
configure:7838: cc -c -g -O2  -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not 
for C
configure:7842: $? = 0
configure:7855: result: no
configure:7870: checking for cc option to produce PIC
configure:8110: result: -fno-common
configure:8118: checking if cc PIC flag -fno-common works
configure:8136: cc -c -g -O2  -fno-common -DPIC conftest.c >&5
configure:8140: $? = 0
configure:8153: result: yes
configure:8181: checking if cc static flag -static works
configure:8209: result: no
configure:8219: checking if cc supports -c -o file.o
configure:8240: cc -c -g -O2  -o out/conftest2.o conftest.c >&5
configure:8244: $? = 0
configure:8266: result: yes
configure:8292: checking whether the cc linker (/usr/llvm-gcc-
4.2/libexec/gcc/i686-apple-darwin10/4.2.1/ld) supports shared libraries
configure:9224: result: yes
configure:9291: checking dynamic linker characteristics
configure:9893: result: darwin10.8.0 dyld
configure:9917: checking how to hardcode library paths into programs
configure:9942: result: immediate
configure:9956: checking whether stripping libraries is possible
configure:9970: result: yes
configure:10763: checking if libtool supports shared libraries
configure:10765: result: yes
configure:10768: checking whether to build shared libraries
configure:10789: result: yes
configure:10792: checking whether to build static libraries
configure:10796: result: no
configure:10891: result:
creating libtool
configure:14590: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by config.status, which was
generated by GNU Autoconf 2.61.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on Luke-Scotts-Mac-mini.local

config.status:515: creating config.h

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=i386-apple-darwin10.8.0
ac_cv_c_compiler_gnu=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_sigaction=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_valgrind_memcheck_h=no
ac_cv_host=i386-apple-darwin10.8.0
ac_cv_objext=o
ac_cv_path_EGREP='/usr/bin/grep -E'
ac_cv_path_GREP=/usr/bin/grep
ac_cv_prog_AWK=awk
ac_cv_prog_CPP='cc -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=cc
ac_cv_prog_ac_ct_DSYMUTIL=dsymutil
ac_cv_prog_ac_ct_NMEDIT=nmedit
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_cc_c_o=yes
ac_cv_prog_cc_g=yes
ac_cv_target=i386-apple-darwin10.8.0
lt_cv_apple_cc_single_mod=yes
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_exported_symbols_list=yes
lt_cv_ld_reload_flag=-r
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin10/4.2.1/ld
lt_cv_path_NM=/usr/bin/nm
lt_cv_path_SED=/usr/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=no
lt_cv_prog_gnu_ld=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ 	]\([BCDEGRST]
[BCDEGRST]*\)[ 	][ 	]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/  
{\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/  {"\2", 
(lt_ptr) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int 
\1;/p'\'''
lt_cv_sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
lt_cv_sys_lib_search_path_spec='/usr/llvm-gcc-4.2/lib/gcc/i686-apple-
darwin10/4.2.1/x86_64 /Developer/usr/llvm-gcc-4.2/lib/gcc/i686-apple-
darwin10/4.2.1/x86_64 /usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64 
/usr/lib/i686-apple-darwin10/4.2.1 /usr/lib /usr/llvm-gcc-4.2/lib/gcc /usr/llvm-
gcc-4.2/lib /Developer/usr/llvm-gcc-4.2/lib /usr/local/lib'
lt_cv_sys_max_cmd_len=196608
lt_lt_cv_prog_compiler_c_o='"yes"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ 	]\\([BCDEGRST]
[BCDEGRST]*\\)[ 	][ 	]*_\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 _\\2 
\\2/p'\''"'
lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) 
\$/  {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ 
]*\\)\$/  {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern 
int \\1;/p'\''"'
php_cv_cc_dashr=no
php_cv_cc_rpath=yes
php_cv_semun=yes
php_cv_zend_set_lookup_function_hook=no

## ----------------- ##
## Output variables. ##
## ----------------- ##

AR='ar'
AWK='awk'
CC='cc'
CFLAGS='-g -O2'
CONFIGURE_COMMAND=' '\''./configure'\''  '\''--with-php-
config=/Server/software/bin/php-config'\'' '\''--enable-apc-pthreadmutex'\'''
CONFIGURE_OPTIONS=' '\''--with-php-config=/Server/software/bin/php-config'\'' 
'\''--enable-apc-pthreadmutex'\'''
CPP='cc -E'
CPPFLAGS=' -DHAVE_CONFIG_H'
DEFS='-DHAVE_CONFIG_H'
DSYMUTIL='dsymutil'
ECHO='/bin/echo'
ECHO_C='ECHO_N=''
ECHO_T=''
EGREP='/usr/bin/grep -E'
EXEEXT=''
GREP='/usr/bin/grep'
LDFLAGS=''
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LN_S='ln -s'
LTLIBOBJS=''
NMEDIT='nmedit'
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
RANLIB='ranlib'
RE2C='exit 0;'
SED='/usr/bin/sed'
SHELL='/bin/sh'
SHLIB_DL_SUFFIX_NAME='so'
SHLIB_SUFFIX_NAME='dylib'
STRIP='strip'
ac_ct_CC='cc'
bindir='${exec_prefix}/bin'
build='i386-apple-darwin10.8.0'
build_alias=''
build_cpu='i386'
build_os='darwin10.8.0'
build_vendor='apple'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
exec_prefix='$(prefix)'
host='i386-apple-darwin10.8.0'
host_alias='i386-apple-darwin10.8.0'
host_cpu='i386'
host_os='darwin10.8.0'
host_vendor='apple'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/Server/software'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target='i386-apple-darwin10.8.0'
target_alias=''
target_cpu='i386'
target_os='darwin10.8.0'
target_vendor='apple'

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define PACKAGE_NAME ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PACKAGE_STRING ""
#define PACKAGE_BUGREPORT ""
#define HAVE_ATOMIC_OPERATIONS 1
#define APC_MMAP 1
#define APC_FCNTL_LOCKS 1
#define APC_HAVE_LOOKUP_HOOKS 0
#define HAVE_SIGACTION 1
#define HAVE_SEMUN 1
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define COMPILE_DL_APC 1
#define HAVE_APC 1
#define HAVE_DLFCN_H 1

configure: exit 0
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 06:01:30 2024 UTC