search for: lib_linux

Displaying 3 results from an estimated 3 matches for "lib_linux".

2010 Jan 14
0
installing RCurl when libcurl is in non-standard location
...sr/lib/libcurl.so.3.0.0 /usr/share/man/man3/libcurl-multi.3.gz /usr/share/man/man3/libcurl-easy.3.gz /usr/share/man/man3/libcurl-errors.3.gz /usr/share/man/man3/libcurl-share.3.gz /usr/share/man/man3/libcurl-tutorial.3.gz /usr/share/man/man3/libcurl.3.gz [10] zork20:/home/jayoung> ls ~/traskdata/lib_linux/libcu* /home/jayoung/traskdata/lib_linux/libcurl.a /home/jayoung/traskdata/lib_linux/libcurl.la* /home/jayoung/traskdata/lib_linux/libcurl.so@ /home/jayoung/traskdata/lib_linux/libcurl.so.3@ /home/jayoung/traskdata/lib_linux/libcurl.so.3.0.0* /home/jayoung/traskdata/lib_linux/libcurl.so.4@ /home/ja...
2014 Aug 21
2
[PATCH] v2v: adding input -i ova
Shahar: This is the same patch as you posted, but I have rebased it on top of current HEAD. You'll have to do save the next email to a file, and do: git reset --hard HEAD^ git pull git am /path/to/saved_email There are no changes in this patch, except what is needed to make it compile. Will follow-up with comments. Rich.
2014 Aug 21
3
Re: [PATCH] v2v: adding input -i ova
On Thu, Aug 21, 2014 at 01:50:18PM +0100, Richard W.M. Jones wrote: > + (* extract ova (tar) file *) > + let cmd = sprintf ("tar -xf %s -C %s") (ova) (dir) in Lots of extra parentheses here :-) The same command can be written more naturally without any of them: let cmd = sprintf "tar -xf %s -C %s" ova dir in However I think what you might have meant is to call