Re: git repo won't build for lack of source files?

2018-06-21 Thread Werner Koch
On Wed, 20 Jun 2018 20:45, ps...@ubuntu.com said: > Apparently you have to configure with --enable-maintainer-mode to avoid > this. autogen.sh actually told you this .-) Shalom-Salam, Werner -- # Please read: Daniel Ellsberg - The Doomsday Machine # Die Gedanken sind frei. Ausnahmen

Re: git repo won't build for lack of source files?

2018-06-20 Thread Mike Inman
Sorry, forgot a critical trick or maybe 2, should have just pasted the script in the first place: #!/bin/bash # # https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=blob;f=README set -e export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH pushd npth ./autogen.sh --force ./configure

Re: git repo won't build for lack of source files?

2018-06-20 Thread Mike Inman
Are you also building the required support libraries? I have recently build 2.2.8 successfully using this set of support libs: git checkout npth-1.5 git checkout libgpg-error-1.31 git checkout libgcrypt-1.8.2 git checkout libksba-1.3.5 git checkout libassuan-2.5.1 git checkout gnupg-2.2.8 then

Re: git repo won't build for lack of source files?

2018-06-20 Thread Phillip Susi
On 6/20/2018 1:52 PM, Phillip Susi wrote: > I cloned the git repo and checked out gnupg-2.2.4, ran ./autogen.sh, > ./configure, then when I try to make, it is apparently missing some files: > > make[2]: Entering directory '/home/psusi/gnupg/common' > make[2]: *** No rule to make target

git repo won't build for lack of source files?

2018-06-20 Thread Phillip Susi
I cloned the git repo and checked out gnupg-2.2.4, ran ./autogen.sh, ./configure, then when I try to make, it is apparently missing some files: make[2]: Entering directory '/home/psusi/gnupg/common' make[2]: *** No rule to make target 'audit-events.h', needed by 'all'. Stop. What gives?