80f4e233fe
- remove deprecated NEED_VERSION. - enable NTLM support as requested by Nick Nauwelaerts <nick@wanadoo.be>. - add gettext to MODULES.
24 lines
784 B
Plaintext
24 lines
784 B
Plaintext
$OpenBSD: patch-Makefile_in,v 1.4 2002/09/10 10:14:24 fgsch Exp $
|
|
--- Makefile.in.orig Tue Sep 10 06:29:19 2002
|
|
+++ Makefile.in Tue Sep 10 06:29:54 2002
|
|
@@ -133,16 +133,16 @@ dummy:
|
|
|
|
# Tester for address parsing
|
|
rfc822: rfc822.c
|
|
- gcc -DMAIN -g rfc822.c -o rfc822
|
|
+ $(CC) -DMAIN -g -o $@ $?
|
|
|
|
# Stand-alone MIME decoder
|
|
unmime: unmime.c base64.c rfc822.c xmalloc.c report.c
|
|
- $(CC) -DSTANDALONE -DHAVE_CONFIG_H -I. -g -o $@ $^
|
|
+ $(CC) -DSTANDALONE -DHAVE_CONFIG_H -I. -g -o $@ $?
|
|
|
|
|
|
# Stand-alone netrc tester
|
|
netrc: netrc.c xmalloc.o report.o
|
|
- $(CC) -DSTANDALONE -DHAVE_CONFIG_H -I. -g -o $@ $^
|
|
+ $(CC) -DSTANDALONE -DHAVE_CONFIG_H -I. -g -o $@ $?
|
|
|
|
.c.o:
|
|
$(CC) $(defines) -c $(CPFLAGS) -I. -I$(srcdir) -I$(top_builddir)/intl -I$(top_srcdir)/intl $(CEFLAGS) $(CFLAGS) $<
|