On Wednesday 14 October 2015 09:38:46 Gaurav Rastogi -X wrote: > Hi, > > Is there any way to get the mapping of CURL version (available as per open > source code) and the curl version present in CURL rpms as a part of > RED-HAT? > > Currently I ve below CURL rpms installed as a part of RED-HAT: > rpm -qa | grep curl > curl-7.19.7-46.el6.i686 > libcurl-7.19.7-46.el6.x86_64 > libcurl-7.19.7-46.el6.i686 > > Need to know to which CURL version release they are mapped to? > > Regards > Gaurav
There is no 1:1 mapping. As the NVR (Name Version Release) tells you, the package is based on upstream curl 7.19.7, released in 2009: http://curl.haxx.se/mail/lib-2009-11/0023.html On top of that, various security fixes, bug fixes, and enhancements have been included. You can get the sources from the corresponding source RPM package, e.g.: curl http://vault.centos.org/6.7/os/Source/SPackages/curl-7.19.7-46.el6.src.rpm \ | rpm2cpio \ | cpio -div Kamil ------------------------------------------------------------------- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html
