Bug 576252
| Summary: | Missing quote in libcurl.m4 | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Pete Zaitcev <zaitcev> |
| Component: | curl | Assignee: | Kamil Dudka <kdudka> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | rawhide | CC: | kdudka |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | curl-7.20.0-4.fc13 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2010-03-23 19:10:15 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Thank you for filling the bug! It was fixed a few days after the release of 7.20.0: http://github.com/bagder/curl/commit/b4ff6d3007be58423a1e6b8b8aa2e038dd1b04c0 built as curl-7.20.0-4.fc14 curl-7.20.0-4.fc13 has been submitted as an update for Fedora 13. http://admin.fedoraproject.org/updates/curl-7.20.0-4.fc13 curl-7.20.0-4.fc13 has been pushed to the Fedora 13 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: Due to a syntax error in /usr/share/aclocal/libcurl.m4, builds of programs that use libcurl fail at configure step with various mysterious messages such as: ./configure: line 12440: syntax error near unexpected token `(' The statement is at line 201: _libcurl_protocols="HTTP FTP FILE TELNET LDAP DICT TFTP Adding the quote at the end of the line allows to build and test. Version-Release number of selected component (if applicable): libcurl-devel-7.20.0-3.fc14.x86_64 How reproducible: Synchronous. Needs the following automake clause: LIBCURL_CHECK_CONFIG(, 7.10.1, , [AC_MSG_ERROR([Missing required libcurl >= 7.10.1])]) Steps to Reproduce: 1. sh autogen.sh 2. ./configure Actual results: ./configure blows up with syntax error Expected results: No error Additional info: