-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Thomas Applencourt
committed
Sep 11, 2023
1 parent
cf3cffa
commit 041dda1
Showing
9 changed files
with
61 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# https://opensource.apple.com/source/zsh/zsh-34/zsh/aclocal.m4 | ||
# Local additions to Autoconf macros. | ||
# Copyright (C) 1992, 1994 Free Software Foundation, Inc. | ||
# Francois Pinard <[email protected]>, 1992. | ||
|
||
AC_DEFUN([AC_PROG_LN], | ||
[AC_MSG_CHECKING(whether ln works) | ||
AC_CACHE_VAL(ac_cv_prog_LN, | ||
[rm -f conftestdata conftestlink | ||
echo > conftestdata | ||
if ln conftestdata conftestlink 2>/dev/null | ||
then | ||
rm -f conftestdata conftestlink | ||
ac_cv_prog_LN="ln" | ||
else | ||
rm -f conftestdata | ||
ac_cv_prog_LN="cp" | ||
fi])dnl | ||
LN="$ac_cv_prog_LN" | ||
if test "$ac_cv_prog_LN" = "ln"; then | ||
AC_MSG_RESULT(yes) | ||
else | ||
AC_MSG_RESULT(no) | ||
fi | ||
AC_SUBST(LN)dnl | ||
]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters