From: David Soria Parra <hidden> Date: 2016-06-15 22:45:26
From: David Soria Parra <redacted>
Solaris systems use the old styled iconv(3) call and therefore
the OLD_ICONV variable should be set. Otherwise we get annoying compile
warnings.
Signed-off-by: David Soria Parra <redacted>
---
Makefile | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
From: Jeff King <hidden> Date: 2016-06-15 22:45:26
On Thu, Oct 02, 2008 at 02:08:47AM +0200, David Soria Parra wrote:
Solaris systems use the old styled iconv(3) call and therefore
the OLD_ICONV variable should be set. Otherwise we get annoying compile
warnings.
Acked-by: Jeff King <redacted>
I set OLD_ICONV on my Solaris build.
Do you also unset NEEDS_LIBICONV (and which version of Solaris are you
running)? Our Makefile sets it to "yes" for Solaris 8, but my build box
requires that it be unset. I'm not sure if my setup is somehow
deficient, or if it is only other versions that need it.
-Peff
From: David Soria Parra <hidden> Date: 2016-06-15 22:45:26
Jeff King schrieb:
Do you also unset NEEDS_LIBICONV (and which version of Solaris are you
running)? Our Makefile sets it to "yes" for Solaris 8, but my build box
requires that it be unset. I'm not sure if my setup is somehow
deficient, or if it is only other versions that need it.
I'm using OpenSolaris which is identified as SunOS 5.11. Therefore the
Makefile doesn't set NEEDS_LIBICONV. I'm not sure if it's needed on
Solaris 8 or not, but it's not needed on OpenSolaris.
David