Re: [racket-users] Tell require where to find C libraries ?

2021-05-07 Thread krs...@gmail.com
This is fun :) I unset the LD_LIBRARY_PATH and added the lib-search-dirs back to the config and > (require taglib) ffi-lib: failed for (ffi-lib "libtag_c" '("0")), tried: # (no such file) # (no such file) # (no such file) # (no such file) # (exists) # (no such file) "libtag_c

Re: [racket-users] Tell require where to find C libraries ?

2021-05-07 Thread krs...@gmail.com
ESS :) (I think something in the lib-search-dirs stuff isn't doing what it's supposed to, maybe if I get motivated i'll investigate more.) Thanks again! On Friday, May 7, 2021 at 11:03:15 AM UTC-4 krs...@gmail.com wrote: > Thanks for your help all! > I think you didn't se

Re: [racket-users] Tell require where to find C libraries ?

2021-05-07 Thread krs...@gmail.com
ven if it loads the > library. Loading the shared library might still fail if the shared library > itself has dependencies that are not in the default OS search path. (In > that case, Nate's point about LD_LIBRARY_PATH might help.) > > Ryan > > > On Fri, May 7, 2021 at

Re: [racket-users] Tell require where to find C libraries ?

2021-05-07 Thread krs...@gmail.com
I know it sees my custom dir, I ran this in racket: > (require setup/dirs) > (get-lib-search-dirs) '(# # #) On Friday, May 7, 2021 at 8:08:26 AM UTC-4 krs...@gmail.com wrote: > I'm so close :) > > I installed taglib locally to /home/wise/root/lib, so I *have* the

Re: [racket-users] Tell require where to find C libraries ?

2021-05-07 Thread krs...@gmail.com
.so.0 ; system error: File not found ; [,bt for context] I'm still poking at it, thanks again for the help. On Thursday, May 6, 2021 at 11:41:03 PM UTC-4 krs...@gmail.com wrote: > Thanks for the help! > I was sure that was going to be it but it's not :( > > This is what

Re: [racket-users] Tell require where to find C libraries ?

2021-05-06 Thread krs...@gmail.com
> every new installation of drracket: > > - edit /config.rktd to contain > (lib-search-dirs . (#f "/opt/local/lib”)) > > Let me know if I misunderstood your situation! > > John Clements > > > > On May 6, 2021, at 3:54 AM, krs...@gmail.com wrote: > > &g

[racket-users] Tell require where to find C libraries ?

2021-05-06 Thread krs...@gmail.com
Hi!, I am doing: (require taglib) and I get: > (require taglib) ; ffi-lib: could not load foreign library ; path: libtag_c.so.0 ; system error: File not found ; [,bt for context] I am on OpenBSD and that file is at: /usr/local/lib/libtag_c.so.3.0 How can I change my search path for C libs t

Re: [racket-users] multi line scribble text body in web-server template

2020-11-01 Thread krs...@gmail.com
ophe.github.io > Vincit qui se vincit. > > > On Sun, Nov 1, 2020 at 12:22 PM Ben Greenman > wrote: > >> Thats the nor >> >> On 11/1/20, krs...@gmail.com wrote: >> > >> > Hi!, >> > >> > I am using web-server/templates >> >

[racket-users] multi line scribble text body in web-server template

2020-11-01 Thread krs...@gmail.com
Hi!, I am using web-server/templates . I am confused why this just displays the last line?: @when[#t]{ first second } I including html only when a user is logged in, and my issue can be distilled to the above template synt