* Alan Hourihane wrote on Tue, Apr 21, 2009 at 11:05:34AM CEST: > > Follow-up Comment #3, patch #6691 (project libtool): > > Attached is a new patch for FreeMiNT against 2.2.6a.
I've pushed this patch now, and added you to THANKS. Thanks again! Ralf 2009-05-02 Alan Hourihane <[email protected]> (tiny change) Improved support for FreeMiNT. * libltdl/m4/libtool.m4 (LT_CMD_MAX_LEN) [mint]: Hard-code command line length limit to 8192, to avoid long test. * NEWS, THANKS: Update. diff --git a/NEWS b/NEWS index 4def4ca..f01480f 100644 --- a/NEWS +++ b/NEWS @@ -19,6 +19,7 @@ New in 2.2.8 2009-??-??: git version 2.2.7a, Libtool team: - Improved support for cegcc (Windows CE/PocketPC). - Support for GNU/kOpenSolaris (kopensolaris*-gnu). - Initial support for compilers on BlueGene BG/L. + - Improved support for Atari FreeMiNT. * Bug fixes: diff --git a/libltdl/m4/libtool.m4 b/libltdl/m4/libtool.m4 index f76c9b1..65be165 100644 --- a/libltdl/m4/libtool.m4 +++ b/libltdl/m4/libtool.m4 @@ -1451,6 +1451,11 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl lt_cv_sys_max_cmd_len=8192; ;; + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192.
