|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-10-07 06:17 UTC] maido at net-style dot it
[2003-10-07 06:19 UTC] sniper@php.net
[2003-10-07 09:11 UTC] maido at net-style dot it
[2003-10-07 18:39 UTC] sniper@php.net
[2003-10-08 06:00 UTC] maido at net-style dot it
[2003-10-08 06:49 UTC] sniper@php.net
[2003-10-08 09:54 UTC] maido at net-style dot it
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 27 17:00:01 2025 UTC |
Description: ------------ Compilation with the following configure line went perfectly ok with versions prior to 4.3.4RC4: ./configure --with-mysql=/usr/local/mysql --enable-track-var --with-zlib --enable-ftp --with-gd --with-jpeg-dir=/usr/include --with-png-dir=/usr/include --with-zlib-dir=/usr/include --with-freetype --with-curl --enable-sockets --with-apxs2=/usr/apache2/bin/apxs With version 4.3.4RC4 I get a compile error, listed below. My libraries: openssl-0.9.7a curl-7.9.8-1 krb5-libs-1.3.1-6 Reproduce code: --------------- n/a Expected result: ---------------- I would expect a proper compilation Actual result: -------------- This is a snapshot of my config.log configure:20468: checking for curl_easy_perform in -lcurl configure:20487: gcc -o conftest -g -O2 -lcurl -lssl -lcrypto -ldl conftest.c -lcurl -lcurl -lz -lresolv -lm -ldl -lnsl -lcurl -lssl -lcrypto -ldl 1>&5 /usr/lib/libgssapi_krb5.so.2: undefined reference to `add_error_table' /usr/lib/libgssapi_krb5.so.2: undefined reference to `remove_error_table' collect2: ld returned 1 exit status configure: failed program was: #line 20476 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char curl_easy_perform(); int main() { curl_easy_perform() ; return 0; }