>>>>> "Martin" == Martin Buchholz <[EMAIL PROTECTED]> writes:
>>>>> "AD" == Akim Demaille <[EMAIL PROTECTED]> writes:
AD> We can introduce a Copyright diversion, where you could easily
AD> append your notices. Would that be enough?
Martin> I think so.
Martin> I do actually think rms cares, because he is a stickler for
Martin> these sorts of things. The obvious thing is to compare with
Martin> bison, which similarly mingles entirely free with possibly
Martin> less free code.
The current Autoconf provides this:
/tmp % cat configure.in nostromo 11:09
AC_COPYRIGHT([Hello World 2.14a])
AC_INIT
AC_OUTPUT
/tmp % ~ace/autoconf -m ~ace nostromo 11:09
/tmp % ./configure --version nostromo 11:09
Generated automatically using Autoconf version 2.14a.
Copyright (C) 1992, 93, 94, 95, 96, 98, 99, 2000
Free Software Foundation, Inc.
This configure script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it.
Hello World 2.14a
/tmp % sed -e '/^#/!q' configure nostromo 11:09
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using Autoconf version 2.14a.
# Copyright (C) 1992, 93, 94, 95, 96, 98, 99, 2000
# Free Software Foundation, Inc.
#
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.
#
#
# Hello World 2.14a
Akim