search for: use_iconv

Displaying 3 results from an estimated 3 matches for "use_iconv".

2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...fining all entries, factoring redundancy, and establishing dependencies. (Some typos were fixed too.) 7. Shared objects on Windows use .dll, not .so. (Added *.dll, *.dylib, and *.exe to .gitignore.) 8. To allow more freedom using Makefile.lite without configure, I added the variables USE_OGG and USE_ICONV which can toggle these two components in the build process. ex: make -f Makefile.lite examples USE_OGG=0 USE_ICONV=0 These improvements make use of some use-time Makefile variable expansion. --- .gitignore | 3 ++ Makefile.deps | 32 ++++...
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...fining all entries, factoring redundancy, and establishing dependencies. (Some typos were fixed too.) 7. Shared objects on Windows use .dll, not .so. (Added *.dll, *.dylib, and *.exe to .gitignore.) 8. To allow more freedom using Makefile.lite without configure, I added the variables USE_OGG and USE_ICONV which can toggle these two components in the build process. ex: make -f Makefile.lite examples USE_OGG=0 USE_ICONV=0 These improvements make use of some use-time Makefile variable expansion. --- .gitignore | 3 ++ Makefile.deps | 32 +++++...
2008 Jun 07
1
Fail to call AC_CACHE_CHECK on R 2.7.0 for Solaris
...not bother running 'make' but there were no failures when the configure script was run. I then repeated this with the latest version of R (2.7.0) and got similar results. Looking at the file configure.ac in R (both 2.6.1 and 2.7.0), I see: ## iconv headers and function. if test "${use_iconv}" = yes; then R_ICONV if test "$r_cv_iconv_latin1" != yes; then AC_MSG_ERROR([--with-iconv=yes (default) and a suitable iconv is not available]) fi else AC_MSG_WARN([--with-iconv=no is deprecated and will be withdrawn shortly]) fi Clearly the value of r_cv_iconv_latin1...