Nikos Mavrogiannopoulos <[email protected]> writes:

>  I tried to do a "./configure && make" in freebsd an got an error
> during make. If I use GNU make instead it works. I attach the error
> output from the make command and the generated Makefile.

I think the problem is that bsd make doesn't allow multiple files to b
listed for a single include command. If you want to use bsd make, you
have to configure with --disable-dependency-tracking. ./configure --help
says

  --disable-dependency-tracking
                            Disable dependency tracking. Dependency tracking
                            doesn't work with BSD make

Any suggestions other places to document that problem?

The Makefile.in does

DEP_FILES = $(SOURCES:.c=.$(OBJEXT).d) $(SOURCES:.c=.p$(OBJEXT).d)
@DEP_INCLUDE@ $(DEP_FILES)

and "include" or "#" is substituted for @DEP_INCLUDE@, depending on
whether or not dependency tracking is enabled.

Regards,
/Niels


-- 
Niels Möller. PGP-encrypted email is preferred. Keyid C0B98E26.
Internet email is subject to wholesale government surveillance.
_______________________________________________
nettle-bugs mailing list
[email protected]
http://lists.lysator.liu.se/mailman/listinfo/nettle-bugs

Reply via email to