mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-06-09 03:06:33 +02:00
dfc5ff02a0
so that automake automatically knows to distribute those files. Use AC_LIBOBJ to ensure that automake automatically knows the names of always-compiled source files. Automake already knows the names of conditionally compiled ones, e.g., due to preexisting uses of AC_LIBOBJ and AC_REPLACE_FUNCS. [This is a start. Many still remain to be fixed...]
20 lines
600 B
Plaintext
20 lines
600 B
Plaintext
#serial 5
|
|
|
|
# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
# This file is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
# Written by Jim Meyering.
|
|
|
|
AC_DEFUN([AC_FUNC_CANONICALIZE_FILE_NAME],
|
|
[
|
|
AC_LIBSOURCES([canonicalize.c, canonicalize.h])
|
|
AC_LIBOBJ([canonicalize])
|
|
|
|
AC_REQUIRE([AC_HEADER_STDC])
|
|
AC_CHECK_HEADERS(string.h sys/param.h stddef.h)
|
|
AC_CHECK_FUNCS(resolvepath canonicalize_file_name)
|
|
AC_REQUIRE([AC_HEADER_STAT])
|
|
])
|