ID: 14483
Updated by: kalowsky
Reported By: [EMAIL PROTECTED]
Status: Critical
Bug Type: Compile Failure
Operating System: Mac OS X 10.1
PHP Version: 4.2.0-dev
New Comment:

just one detail question here, can you please include a copy of your
configure options as well?


Previous Comments:
------------------------------------------------------------------------

[2002-01-08 15:47:00] [EMAIL PROTECTED]

A solution, that works, for now:

Thanks to http://www.entropy.ch/software/macosx/php/ (Marc Liyanage).

---------

NOTE 2: I was not able to get the build for PHP 4.1.0 to work
correctly, probably because of libtool issues. A helpful developer
suggested

- running configure in the PHP 4.0.6 source tree 
- modifying the resulting libtool script 
- then configuring the PHP 4.1.0 sources 
- copying the modified 4.0.6 libtool over to the 4.1.0 directory 
- and finally running make 

This did the trick for me. Here's the line that needs to be changed in
the 4.0.6 libtool script:

old: archive_cmds="\$CC -bundle -undefined suppress -o \$lib \$libobjs
\$deplibs \$linkopts"

new: archive_cmds="\$CC -flat_namespace -bundle -undefined suppress -o
\$lib \$libobjs \$deplibs \$linkopts"

--------- END

Hopefully this will help passers-by looking for assistance.  It seems
like the old libtool (1.3.5?) was OK (except for the -flat_namespace
thing).  It's this 1.4.2 that has caused the headache...

I have PHP 4.1.1 working using this shenanigan.  No more typing
HTTP_POST_VARS and gratuitous global declarations!  Bruhuhahaha...

Oh yeah, I can also say that bug ID 10686 (in datetime.c) has been
fixed and that behavior no longer appears in the mktime function...
Booyah... (http://bugs.php.net/bug.php?id=10686)


------------------------------------------------------------------------

[2001-12-16 18:25:22] [EMAIL PROTECTED]

That 'apxs' problem is actually the same bug in libtool as it is under
AIX.


------------------------------------------------------------------------

[2001-12-15 14:11:42] [EMAIL PROTECTED]

Are you talking about commenting out the "yytext"...

Is this a libtool bug?

Seems like somebody on AIX is having a similar problem.

http://bugs.php.net/bug.php?id=14245

In the Mac OS X situation, though... it seems to be a threefold
problem...

1. ltmain.sh (due to multiple symbol errors)
2. yytext issue
3. apxs issue

------------------------------------------------------------------------

[2001-12-15 07:33:10] [EMAIL PROTECTED]

That commenting out should not be nessecairy, I have the same on my
system. The problem is something else...

Derick

------------------------------------------------------------------------

[2001-12-14 17:26:57] [EMAIL PROTECTED]

It's friday niiigghttt...

Doing:
    grep -nrH "\*yytext" Zend/*

Yields:
-----
zend_ini_scanner.c:310:extern char *yytext;
zend_ini_scanner.c:496:char *yytext;
zend_language_scanner.c:305:extern char *yytext;
zend_language_scanner.c:2725:char *yytext;
-----

So:
    pico -b -e -w +2725 zend_language_scanner.c

Comment out:
/* char *yytext; */

We are "money" because this is already declared as a extern in
zend_ini_scanner or whatever.

Now the compile completes, but everything is still hosed, because make
install gives:

Making install in .
apxs -i -a -n php4 libs/libphp4.so
[activating module `php4' in /private/etc/httpd/httpd.conf]
cp libs/libphp4.so /usr/libexec/httpd/libphp4.so
cp: libs/libphp4.so: No such file or directory
apxs:Break: Command failed with rc=1
make[1]: *** [install-sapi] Error 1
make: *** [install-recursive] Error 1

Arg...

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/?id=14483


Edit this bug report at http://bugs.php.net/?id=14483&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to