configure: Pass compiler flag to enable ICU only when building util.encodings

Passing it in CFLAGS applied to all modules, which was not needed.
This commit is contained in:
Kim Alvefur 2020-07-12 23:28:04 +02:00
parent a2ef355d20
commit 9eb8214030
3 changed files with 5 additions and 1 deletions

View file

@ -24,6 +24,7 @@ install: $(ALL)
clean:
rm -f $(ALL) $(patsubst %.so,%.o,$(ALL))
encodings.o: CFLAGS+=$(IDNA_FLAGS)
encodings.so: LDLIBS+=$(IDNA_LIBS)
hashes.so: LDLIBS+=$(OPENSSL_LIBS)

View file

@ -23,6 +23,8 @@ install: $(ALL)
clean:
rm -f $(ALL) $(patsubst %.so,%.o,$(ALL))
encodings.o: encodings.c
$(CC) $(CFLAGS) $(IDNA_FLAGS) -c -o $@ $<
encodings.so: encodings.o
$(LD) $(LDFLAGS) -o $@ $< $(LDLIBS) $(IDNA_LIBS)