[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Gnucap-devel] incomplete stuff, GNUCAP_MAKE
From: |
Felix Salfelder |
Subject: |
Re: [Gnucap-devel] incomplete stuff, GNUCAP_MAKE |
Date: |
Mon, 25 May 2015 12:27:57 +0200 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
Hi Al.
On Mon, May 25, 2015 at 03:53:45AM -0400, al davis wrote:
> Most plugins are single files and should not require a build
> system.
this is about the "multiload" branch. what is missing there is the
makefile. gnucap should (like gnucap-uf) install a makefile for
single-file plugin load purposes.
gnucap-uf:src/c_attach.cc, calls make as in
std::string make = OS::getenv("GNUCAP_MAKE", GNUCAP_MAKE);
the line has changed to
std::string make = "make"; // OS::getenv("GNUCAP_MAKE", GNUCAP_MAKE);
in "multiload". it cannot work this way, because make alone does not
know the rules. the override from environment is meant for
(pre-installation) testing only, which is handy but not essential.
> Everything needed should be available when the program
> is installed.
as a first step, gnucap should install what i call GNUCAP_MAKE. if you
agree, i can try to port it from gnucap-uf.
cheers
felix