I'm building Subversion from source in order to generate static libraries to
use in my own application.
I can build Subversion fine but I don't seem to be getting any libraries
(dylib's).
Here is what I type in terminal:
curl -O http://subversion.tigris.org/downloads/subversion-1.6.16.tar.gz
c
I tried --disable-shared but I still didn't get any libsvn*.dylib files.
Is there anything else I can try?
On 19 May 2011, at 07:47, Daniel Shahaf wrote:
> Just ignore the file you don't need then?
>
> Or try --disable-shared
>
> Ian Sidor wrote on Thu, May 19, 2011
al/lib but they don't seem to be there after I execute make.
./configure --disable-shared --enable-static
make
Thanks,
Ian.
On 19 May 2011, at 17:31, Blair Zajac wrote:
> Static libraries end in .a, not .dylib, those are shared.
>
> Blair
>
> On May 19, 2011, at 9:23 AM,
Ok thanks to all, I have my script working correctly now.
Regards,
Ian.
On 20 May 2011, at 18:00, Blair Zajac wrote:
>
> On May 20, 2011, at 3:40 AM, Ian Sidor wrote:
>
>> Oops. Thank-you for pointing that out, my mistake.
>>
>> However, I still cannot find any