-
-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make info (and makeinfo) standard, simplify scripts for ecl and maxima
- Loading branch information
Showing
6 changed files
with
15 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
$(MP_LIBRARY) readline gc libffi | ||
$(MP_LIBRARY) readline gc libffi info | ||
|
||
---------- | ||
All lines of this file are ignored except the first. |
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 |
---|---|---|
@@ -1,4 +1,14 @@ | ||
SAGE_SPKG_CONFIGURE([info], [ | ||
AC_PATH_PROG(INFO, info) | ||
AS_IF([test -z "${INFO}"], [sage_spkg_install_info=yes]) | ||
AS_IF([test -z "${INFO}"], [sage_spkg_install_info=yes | ||
], [ | ||
dnl very old makeinfo are not texi2any, newer are symlinks to texi2any | ||
AC_PATH_PROG(TEXI2ANY, texi2any) | ||
AS_IF([test -z "${TEXI2ANY}"], [sage_spkg_install_info=yes | ||
], [ | ||
AS_IF([makeinfo -c foo 2>&1 | grep -q invalid], [ | ||
dnl makeinfo found, but too old, and does not support all options that ecl likes to use | ||
sage_spkg_install_info=yes]) | ||
]) | ||
]) | ||
]) |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
cd src/info | ||
cd src | ||
sdh_make_install |
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 |
---|---|---|
@@ -1 +1 @@ | ||
optional | ||
standard |
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