ID:               30593
 Updated by:       [EMAIL PROTECTED]
 Reported By:      sean dot lincolne at gmail dot com
-Status:           Open
+Status:           Closed
 Bug Type:         Ingres II related
 Operating System: *
 PHP Version:      5CVS, 4CVS (2005-02-17)
 New Comment:

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.




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

[2005-03-21 16:38:30] grant dot croker at ca dot com

This is happening because config.m4 uses the static ingres libraries
libingres.a and libiiapi.a. Changing this file to use the correct
shared libs allows the build to complete without hacking any Makefile
also has the added feature of enabling the build of an ingres shared
module. See below for a cvs diff. This diff applies to all versions of
PHP from 4.3 upwards.

Index: ext/ingres_ii/config.m4
===================================================================
RCS file: /repository/php-src/ext/ingres_ii/config.m4,v
retrieving revision 1.8.4.1
diff -u -b -w -B -d -r1.8.4.1 config.m4
--- ext/ingres_ii/config.m4     23 Jan 2003 05:33:17 -0000     
1.8.4.1
+++ ext/ingres_ii/config.m4     21 Mar 2005 15:35:13 -0000
@@ -29,7 +29,9 @@
     AC_MSG_ERROR(Cannot find libiiapi.a under $II_DIR/lib)
   fi

-  PHP_ADD_LIBRARY_WITH_PATH(iiapi, $II_LIB_DIR, II_SHARED_LIBADD)
-  PHP_ADD_LIBRARY_WITH_PATH(ingres, $II_LIB_DIR, II_SHARED_LIBADD)
+  PHP_ADD_LIBRARY_WITH_PATH(iiapi.1, $II_LIB_DIR, II_SHARED_LIBADD)
+  PHP_ADD_LIBRARY_WITH_PATH(q.1, $II_LIB_DIR, II_SHARED_LIBADD)
+  PHP_ADD_LIBRARY_WITH_PATH(frame.1, $II_LIB_DIR, II_SHARED_LIBADD)
+  PHP_ADD_LIBRARY_WITH_PATH(compat.1, $II_LIB_DIR, II_SHARED_LIBADD)
   PHP_ADD_INCLUDE($II_INC_DIR)
 fi

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

[2004-11-24 07:36:25] sean dot lincolne at gmail dot com

I was trying everything to see if I could force 'configure' to
recognise that it needs the 'libpthread' library.

Either way it has no impact on the problem, nor does it impact on the
use of libpthread.  Currently the only workaround is to manually edit
'Makefile' after 'configure' but before 'make'.  Not particularly
friendly or elegant.

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

[2004-11-24 01:35:15] [EMAIL PROTECTED]

WHY do you want to use the --with-tsrm-phtreads option?
You're compiling an apache 1.x module which isn't multithreaded..


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

[2004-10-31 04:44:59] sean dot lincolne at gmail dot com

Configuration command as follows:

./configure --with-apxs --without-mysql \
        --with-ingres --with-ldap \
        --without-pear --disable-shared \
        --enable-static --with-tsrm-pthreads

Make fails with the following error:

/opt/ingres/lib/libingres.a(louniq.o): In function `LOuniq':
louniq.o(.text+0x16d): the use of `mktemp' is dangerous, better use
`mkstemp'
/opt/ingres/lib/libingres.a(mepages.o): In function `IIMEget_pages':
mepages.o(.text+0x1c5): undefined reference to `pthread_mutex_trylock'
collect2: ld returned 1 exit status
make: *** [sapi/cli/php] Error 1
[EMAIL PROTECTED] php-4.3.9]#


The 'config.log' file can be found at

http://www.batute.com/config.log

Thanks,

Sean

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

[2004-10-28 08:11:15] [EMAIL PROTECTED]

Please provide your 1. configure line, 2. the error itself, 3. a link
to the output of config.log (do not paste it here!)

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

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/30593

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

Reply via email to