+2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
+
+ * gnulib-tool (func_import): Add support for 'public domain' license.
+ * modules/alloca, modules/atexit, modules/memmove:
+ Now public domain, not GPL.
+ * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
+ * modules/realloc, modules/strerror, modules/strtod:
+ Now LGPL, not GPL.
+
2005-07-03 Paul Eggert <eggert@cs.ucla.edu>
Remove the dependency of the strftime module on the tzset module.
progname=$0
package=gnulib
-cvsdatestamp='$Date: 2005-05-14 06:03:57 $'
+cvsdatestamp='$Date: 2005-07-05 07:14:00 $'
last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
if test -n "$lgpl"; then
for module in $modules; do
license=`func_get_license $module`
- if test $license != LGPL; then
- func_fatal_error "incompatible license on module \`$module\`: $license"
- fi
+ case $license in
+ LGPL | 'public domain') ;;
+ *)
+ func_fatal_error \
+ "incompatible license on module \`$module\`: $license" ;;
+ esac
done
fi