diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/tls/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2005-11-19 Alexey Shchepin <alexey@sevcom.net> + + * src/tls/Makefile.in: Use CPPFLAGS (thanks to Magnus Henoch) + 2005-11-17 Alexey Shchepin <alexey@sevcom.net> * src/ejabberd_s2s_in.erl: Support for dNSName certificate field diff --git a/src/tls/Makefile.in b/src/tls/Makefile.in index e0ebd5d4f..93f99032d 100644 --- a/src/tls/Makefile.in +++ b/src/tls/Makefile.in @@ -24,7 +24,7 @@ $(OUTDIR)/%.beam: %.erl # erl -s make all report "{outdir, \"..\"}" -noinput -s erlang halt $(ERLSHLIBS): ../%.so: %.c - $(CC) -Wall $(CFLAGS) $(LDFLAGS) \ + $(CC) -Wall $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) \ $(subst ../,,$(subst .so,.c,$@)) $(LIBS) \ -o $@ -fpic -shared |