emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Resolving conflicts between gnulib and nt/inc headers


From: Paul Eggert
Subject: Re: Resolving conflicts between gnulib and nt/inc headers
Date: Sat, 30 Mar 2013 12:00:11 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130311 Thunderbird/17.0.4

On 03/30/13 10:29, Eli Zaretskii wrote:
> how can I prevent
> certain headers from being produced from their *.in.h templates?

One possibility would be to edit lib/Makefile.am
to replace this line:

 include gnulib.mk

with something like this:

 if WINDOWSNT
 include ../nt/gnulib.mk
 else
 include gnulib.mk
 endif

and to add something like this to configure.ac:

 AM_CONDITIONAL([WINDOWSNT], [test that we're running under MS-Windows])

You can then put into the MS-Windows gnulib.mk
whatever you like.

Ideally the Emacs and Gnulib substitutes should be
merged, of course, but that's a bigger project.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]