Re: .if and Makefile issues

2018-03-26 Thread Gary Aitken
On 03/26/18 01:11, Don Lewis wrote: On 25 Mar, Don Lewis wrote: On 25 Mar, Gary Aitken wrote: I forgot that all of the lines from the "if" up to but not including "fi" need to end with a \ so that make treats them all as one multi-line shell command: post-build: echo "* post-build *

Re: Help with porting carbon-c-relay.

2018-03-26 Thread Sergey Akhmatov
Try adding: CPPFLAGS+=  -I${LOCALBASE}/include LDFLAGS+=   -L${LOCALBASE}/lib CONFIGURE_ARGS+=--with-lz4=yes On 26/03/2018 13:17, Andreas Andersson wrote: First of, with this Makefile the port is functional. It's just that it lacks the ability to compress data sent between two carbon-

Help with porting carbon-c-relay.

2018-03-26 Thread Andreas Andersson
First of, with this Makefile the port is functional. It's just that it lacks the ability to compress data sent between two carbon-c-relay's. According to config.log it does set both prefix and includedir, yet it is unable to find lz4.h. I'm kind of new to porting stuff using autoconf and such , t

Re: libreoffice fails to build [SOLVED]

2018-03-26 Thread tech-lists
On 24/03/2018 19:07, tech-lists wrote: > Hi, > > Building libreoffice (libreoffice-en_GB) complains about illegal > instruction and dumps core. Full script output is at > https://www.zyxst.net/errors/libreofficebuildfail.txt please ignore, libreoffice builds fine on a pristine installation. --

Re: .if and Makefile issues

2018-03-26 Thread Don Lewis
On 25 Mar, Don Lewis wrote: > On 25 Mar, Gary Aitken wrote: >> Bewildered and frustrated, looking for some guidance on a seemingly >> simple task: check the existence of a file and rename it. >> >> Looking at a number of examples in the Porter's guide, I should be >> able to do something like this