JuliaWeb / HttpParser.jl

Deprecated! Julia wrapper for joyent/http-parser
MIT License
13 stars 37 forks source link

Fixes build error of #3 #9

Closed rened closed 11 years ago

rened commented 11 years ago

I could not make the BinDeps command MakeTargets to work, but simply issuing make directly works.

StefanKarpinski commented 11 years ago

cc: @loladiro

Keno commented 11 years ago

This is fixed in BinDeps master. I guess it's in not the version on METADATA.

StefanKarpinski commented 11 years ago

You can get the master version easily by running Pkg.checkout("BinDeps").

astrieanna commented 11 years ago

@loladiro Do you want the current BinDeps' master version to be in METADATA? I'd be happy to make the pull request to do that if that's the case.

StefanKarpinski commented 11 years ago

You can try out the brand new Pkg.tag("BinDeps") functionality. I haven't yet added the ability to create a pull request automatically, but that will update METADATA for you.

Keno commented 11 years ago

Yeah, go ahead. I'm a little busy at the moment, otherwise I would have done it myself.

astrieanna commented 11 years ago

Done. https://github.com/JuliaLang/METADATA.jl/pull/380

rened commented 11 years ago

Thanks a lot! I still seem to get BinDeps related errors on both linux and mac, with deleted .julia, newest julia and packages:

full output of Pkg.add("HttpServer") on linux (64bit ubunut): https://gist.github.com/rened/6578625 full output on mac (10.8.4): https://gist.github.com/rened/6578645

I can get the mac version to build by manually setting the DYLD path, but get errors issuing "using HttpServer" as it cannot find libicucore: https://gist.github.com/rened/6578708

To actually be able to run the mac version I have to even include /usr/lib in the DYLD path: https://gist.github.com/rened/6578740

No DYLD[_FALLBACK] envs are set, so they cannot interfere here.

rened commented 11 years ago

It seems to be related to / to be the same as https://github.com/staticfloat/Homebrew.jl/issues/6

staticfloat commented 11 years ago

@rened; there was a typo in the URL of one of the files Homebrew was trying to download. Please run the following and try again on mac:

julia> Pkg.update()

julia> using Homebrew

julia> Homebrew.update()
rened commented 11 years ago

Thank a lot, it works!