[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Lightning] Installing `lightning.h'
From: |
Paolo Bonzini |
Subject: |
Re: [Lightning] Installing `lightning.h' |
Date: |
Mon, 10 Jul 2006 14:20:03 +0200 |
User-agent: |
Thunderbird 1.5.0.4 (Macintosh/20060530) |
Ludovic Courtès wrote:
Hi,
Paolo Bonzini <address@hidden> writes:
This is only necessary for the subdirectory lightning
(i.e. lightning/Makefile.am). This is the only Makefile.am file that
is included in a package that bundles lightning.
Hmm, so where do packages that bundle Lightning get their `lightning.h'
from?
It is installed alongside with the -common.h files. So we have
standalone:
----------------------------
configure.ac
Makefile.am
lightning.h
lightning.m4
...
lightning/asm-common.h
lightning/core-common.h
...
lightning/Makefile.am
bundled:
----------------------------
lightning/lightning.h
lightning/asm-common.h
lightning/core-common.h
...
lightning/Makefile.am
This yields two answers:
1) you still haven't read the section of the manual where it tells you
about the lightningize script
2) there is actually a need for one more patch, this one:
--- orig/lightning/Makefile.am
+++ mod/lightning/Makefile.am
@@ -12,5 +12,5 @@
nobase_dist_lightning_HEADERS = $(LIGHTNING_FILES)
nodist_lightning_HEADERS = asm.h core.h funcs.h fp.h
else
-dist_noinst_HEADERS = $(LIGHTNING_FILES)
+dist_noinst_HEADERS = $(LIGHTNING_FILES) lightning.h
endif
This is patch-24.
In any case, it still has to be installed when `LIGHTNING_MAIN' is true,
right?
Yeah, and that's already committed as patch-23.
Paolo