|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-02-09 17:25 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 16:00:01 2025 UTC |
Description: ------------ Attempting to configure PHP with libcurl with: ./configure --with-curl=/services/curl where "/service/curl" is the path for my libcurl installation. The configure stops with: checking for CURL support... yes checking for cURL 7.9.8 or greater... ./configure: curl-config: command not found configure: error: cURL version 7.9.8 or later is required to compile php with cURL support Looking in the configure script for the code testing CURL, I see: (line 20151) if ${CURL_DIR}/bin/curl-config --libs print > /dev/null 2>&1; then That's the problem: the curl-config program don't like "print" command, and omitting it: (line 20151 modified) if ${CURL_DIR}/bin/curl-config --libs > /dev/null 2>&1; then all work fine! The same bug is present in PHP 5.0.3 configure. Thanks, Mauro