-
-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #27823: spkg-configure.m4 for iconv
In general the iconv SPKG is not even required. It's not installed (or rather, a dummy empty package is installed) for any platforms except Cygwin, HP-UX, and Solaris. The requirement for it on Cygwin is probably outdated--iconv is a standard library on almost all Cygwin installations, and is surely more up-to-date than when this SPKG was first added in #8567. Support for the other two platforms has not been maintained much. We can add a configure-time check for it, and treat it as a dummy package in most cases. URL: https://trac.sagemath.org/27823 Reported by: embray Ticket author(s): Dima Pasechnik, Erik Bray Reviewer(s): Erik Bray, Dima Pasechnik
- Loading branch information
Showing
2 changed files
with
52 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
SAGE_SPKG_CONFIGURE([iconv], [ | ||
AM_ICONV | ||
if test x$am_cv_func_iconv != xyes; then | ||
sage_spkg_install_iconv=yes | ||
fi | ||
]) | ||
|