|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-08-27 17:56 UTC] sniper@php.net
[2000-08-27 19:16 UTC] mrobinso@php.net
[2000-08-27 19:16 UTC] mrobinso@php.net
[2000-11-08 19:17 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 20:00:01 2025 UTC |
The configure script has a bug. When checking for XpmFreeXpmImage (configure script line 14204), the X11 library is not included, causing the check to fail. The patch follows: --- configure.orig Fri Jul 7 12:12:31 2000 +++ configure Fri Jul 7 12:12:44 2000 @@ -14201,7 +14201,7 @@ withval="/usr/X11R6" fi old_LIBS=$LIBS - LIBS="$LIBS -L$withval/lib" + LIBS="$LIBS -lX11 -L$withval/lib" echo $ac_n "checking for XpmFreeXpmImage in -lXpm""... $ac_c" 1>&6 echo "configure:14207: checking for XpmFreeXpmImage in -lXpm" >&5 ac_lib_var=`echo Xpm'_'XpmFreeXpmImage | sed 'y%./+-%__p_%'`