mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-06 10:25:53 +08:00
6382b687fd
* ChangeLog: Relicense under GPL. * ChangeLog.0: Likewise. * ChangeLog.1: Likewise. * ChangeLog.2: Likewise. * THANKS: Likewise. * m4/m4.m4: Use latest wording of FSF all-permissive license. * m4/make-case.m4: Likewise. * doc/install.texi: Likewise. * tests/statesave.m4: Relicense to match rest of testsuite; this file does not need all-permissive license since it is not designed for reuse by other packages. * BUGS: Relicense under all-permissive license. * HACKING: Likewise. * NEWS: Likewise. * README: Likewise. * README-alpha: Likewise. * README-hacking: Likewise. * TODO: Likewise. Signed-off-by: Eric Blake <ebb9@byu.net>
30 lines
937 B
Plaintext
30 lines
937 B
Plaintext
# make-case.m4 serial 1
|
|
|
|
# Copyright (C) 2008, 2009 Free Software Foundation, Inc.
|
|
|
|
# Copying and distribution of this file, with or without modification,
|
|
# are permitted in any medium without royalty provided the notice and
|
|
# this notice are preserved. This file is offered as-is, without
|
|
# warranty of any kind.
|
|
|
|
# AC_PROG_MAKE_CASE_SENSITIVE
|
|
# ---------------------------
|
|
# Checks whether make is configured to be case insensitive; if yes,
|
|
# sets AM_CONDITIONAL MAKE_CASE_SENSITIVE.
|
|
#
|
|
AC_DEFUN([AC_PROG_MAKE_CASE_SENSITIVE],
|
|
[AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
|
AC_CACHE_CHECK([whether ${MAKE-make} is case sensitive],
|
|
[ac_cv_prog_make_${ac_make}_case],
|
|
[echo all: >conftest.make
|
|
if ${MAKE-make} -f conftest.make ALL >/dev/null 2>&1; then
|
|
ac_res=no
|
|
else
|
|
ac_res=yes
|
|
fi
|
|
eval ac_cv_prog_make_${ac_make}_case=$ac_res
|
|
rm -f conftest.make])
|
|
AM_CONDITIONAL([MAKE_CASE_SENSITIVE],
|
|
[eval test \$ac_cv_prog_make_${ac_make}_case = yes])
|
|
])
|