|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-08 08:07 UTC] sander@php.net
[2002-06-08 08:50 UTC] rasmus@php.net
[2002-06-08 20:25 UTC] sniper@php.net
[2002-06-09 06:58 UTC] huberfelix at web dot de
[2002-06-09 06:58 UTC] huberfelix at web dot de
[2002-06-09 07:27 UTC] huberfelix at web dot de
[2002-06-09 10:40 UTC] sniper@php.net
[2002-06-09 10:41 UTC] sniper@php.net
[2002-06-13 09:46 UTC] huberfelix at web dot de
[2002-06-13 09:48 UTC] mfischer@php.net
[2004-04-01 02:58 UTC] irchtml@php.net
[2020-02-07 06:12 UTC] phpdocbot@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 11:00:01 2025 UTC |
Hi, I used 4.1.2 and everythings works fine - with Freetype 2.1 and GD 2.0.1 (Beta). But now i tried 4.2.1 (and cvs 08.06.02) with the same config, and php segfaults. Other php pages (phpinfo() etc) are working fine with 4.2.1 - but no gd functions. ) [Sat Jun 8 13:00:06 2002] [notice] child pid 29410 exit signal Segmentation fault (11) [Sat Jun 8 13:00:14 2002] [notice] child pid 9319 exit signal Segmentation fault (11) [Sat Jun 8 13:00:14 2002] [notice] child pid 16736 exit signal Segmentation fault (11) [Sat Jun 8 13:00:14 2002] [notice] child pid 30265 exit signal Segmentation fault (11) [Sat Jun 8 13:00:15 2002] [notice] child pid 6633 exit signal Segmentation fault (11) [Sat Jun 8 13:00:15 2002] [notice] child pid 11331 exit signal Segmentation fault (11) [Sat Jun 8 13:00:15 2002] [notice] child pid 4859 exit signal Segmentation fault (11) [Sat Jun 8 13:00:16 2002] [notice] child pid 2575 exit signal Segmentation fault (11) [Sat Jun 8 13:00:16 2002] [notice] child pid 2112 I can't understand this error, and compiled 4.1.2 again - and 4.1.2 still works fine. ./configure \ --with-apxs=/usr/local/apache/current/bin/apxs \ --with-xpm-dir=/usr/X11R6/lib \ --with-tiff-dir=/usr/lib \ --with-gif \ --with-jpeg-dir=/usr/lib \ --with-png-dir=/usr/lib \ --with-zlib-dir=/usr/lib \ --with-freetype-dir=/usr/local/include/freetype2 \ --with-bz2 \ --with-gdbm=/usr/local/lib \ --with-mysql=/usr/local/mysql/current \ --with-mcrypt \ --with-mhash \ --with-pear \ --with-openssl \ --with-cpdflib \ --with-pdflib \ --with-curl \ --with-expat \ --with-mm \ --with-xslt-sablot \ --with-gettext \ --with-db \ --with-db3 \ --with-dom \ --with-gd=/tmp/gd-2.0.1 \ --enable-gd-native-ttf \ --enable-gd-imgstrttf \ --enable-ftp \ --enable-versioning \ --enable-track-vars=yes \ --enable-url-includes \ --enable-sysvshm=yes \ --enable-sysvsem=yes \ --enable-ctype \ --enable-wddx \ --enable-xslt \ --with-config-file-path=/etc \ --with-imap=/tmp/imap-2001a \ --with-imap-ssl \ --with-zip I use following script to test the config: <? header ("Content-type: image/png"); $im = imagecreate (500, 100); $black = imagecolorallocate ($im, 0, 0, 0); $white = imagecolorallocate ($im, 255, 255, 255); imagettftext ($im, 20, 0, 10, 20, $white, "/usr/local/fonts/ttf/verdana.ttf", "UFOs are real!"); imagepng ($im); imagedestroy ($im); ?> Any hints? Thanks for your help Felix