<div dir="ltr"><div>Everything goes happily to <br></div><div>cd qhttpserver-master &amp;&amp; qmake-qt5<br>/bin/sh: 1: qmake-qt5: not found</div><div><br></div><div>Okay, the line the &#39;makefile&#39; is # 41:</div><div>cd qhttpserver-master &amp;&amp; $(QMAKE)</div><div><br></div><div>and the way that&#39;s carried out: cd qhttpserver-master &amp;&amp; qmake-qt5  <br></div><div>is missing a needed space between qmake and -qt5</div><div><br></div><div>I do that manually. Doing this I get <br></div><div><br></div><div>&#39;Info: creating stash file /home/forrest/s7/s7webserver/qhttpserver-master/.qmake.stash&#39;</div><div><br></div><div>and make (from there) makes lines&amp;lines</div><div>with a warning:</div><div>QtNetwork -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I../build -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -o ../build/http_parser.o ../http-parser/http_parser.c<br>../http-parser/http_parser.c: In function ‘http_parser_parse_url’:<br>../http-parser/http_parser.c:2340:18: warning: this statement may fall through [-Wimplicit-fallthrough=]<br> 2340 |         found_at = 1;<br>      |         ~~~~~~~~~^~~<br>../http-parser/http_parser.c:2343:7: note: here<br> 2343 |       case s_req_server:<br>      |       ^~~~</div><div><br></div><div>but the end result is a repl at localhost 6080 that responds with &quot;Not connected&quot;</div><div>and a python s7webserver_repl that just says: &quot;Unable to contact Radium&quot;</div><div><br></div><div>?!<br></div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Mar 29, 2021 at 9:18 AM Kjetil Matheussen &lt;<a href="mailto:k.s.matheussen@gmail.com" target="_blank">k.s.matheussen@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Mon, Mar 29, 2021 at 2:59 AM Forrest Curo &lt;<a href="mailto:treegestalt@gmail.com" target="_blank">treegestalt@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; I&#39;m finding a web repl in the packages. That hangs my compilation and isn&#39;t what I had in mind anyway. The emacs modes I&#39;ve tried have been intractable.<br>
&gt;<br>
&gt; How to get a repl (with history) to practice with?<br>
&gt;<br>
<br>
There is a pretty good repl with history for the web server. That&#39;s<br>
the only repl I use. It&#39;s convenient when developing inside emacs that<br>
you can restart scheme without having to restart the scheme repl in<br>
emacs.<br>
<br>
cd s7webserver<br>
make<br>
./s7webserver<br>
<br>
Then from a terminal, run the scheme repl that connects to the web server:<br>
cd s7webserver./s7webserver_repl.py<br>
</blockquote></div>