-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Thomas Applencourt <[email protected]>
- Loading branch information
1 parent
cf3cffa
commit 86490b8
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