Re: [alternatives] building an app that uses gettext

2021-07-18 Thread Brian Inglis
On 2021-07-17 19:47, Doug Henderson via Cygwin-apps wrote: HI, I have not previously built an app that uses gettext. The relevant parts of the makefile are: VERSION = 1.16 CFLAGS = -g -Wall -D_GNU_SOURCE LDFLAGS += -g alternatives: alternatives.o alternatives.o: alternatives.c $(CC)

Re: [alternatives] building an app that uses gettext

2021-07-18 Thread Marco Atzeri via Cygwin-apps
On 18.07.2021 03:47, Doug Henderson via Cygwin-apps wrote: HI, I have not previously built an app that uses gettext. The relevant parts of the makefile are: VERSION = 1.16 CFLAGS = -g -Wall -D_GNU_SOURCE LDFLAGS += -g alternatives: alternatives.o alternatives.o: alternatives.c $(CC)

[alternatives] building an app that uses gettext

2021-07-17 Thread Doug Henderson via Cygwin-apps
HI, I have not previously built an app that uses gettext. The relevant parts of the makefile are: VERSION = 1.16 CFLAGS = -g -Wall -D_GNU_SOURCE LDFLAGS += -g alternatives: alternatives.o alternatives.o: alternatives.c $(CC) $(CFLAGS) -DVERSION=\"$(VERSION)\" -c alternatives.c I am