bug-gnu-libiconv
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-gnu-libiconv] release planning


From: Mike Fulton
Subject: Re: [bug-gnu-libiconv] release planning
Date: Wed, 17 May 2023 14:01:55 -0700



On Wed, May 17, 2023 at 1:05 PM Bruno Haible <bruno@clisp.org> wrote:
Hi,

The last GNU libiconv release was one year ago. Would it make sense to make
a new release now? Please let me know. Or if you know about some new features
that should be included before the next release, please let me know as well.

On z/OS, I am still sorting out issues with ASCII/EBCDIC that may or may not 
require any changes for libiconv, so I can't say for certain nothing else will come
up there.

Other than that, the only other patch that I am having to make is for Makefile.devel
because we don't have gcc on z/OS, only variations of clang and IBM proprietary C
compilers. As such, I have to do:
diff --git a/Makefile.devel b/Makefile.devel
index 5535acc..37a25b8 100644
--- a/Makefile.devel
+++ b/Makefile.devel
@@ -9,8 +9,8 @@ AUTOHEADER = autoheader
 AUTOMAKE = automake-1.16
 ACLOCAL = aclocal-1.16
 GPERF = gperf
-CC = gcc -Wall
-CFLAGS = -O
+CC ?= gcc -Wall
+CFLAGS ?= -O
 MAN2HTML = groff -mandoc -Thtml
 CP = cp
 RM = rm -f

It would be nice if there was a way that the compiler and compiler options could be 
overridden. I know you weren't able to take this patch because it requires an 
enhanced 'make' but perhaps there is another way to provide this override capability? 

Thanks.

Bruno




reply via email to

[Prev in Thread] Current Thread [Next in Thread]