summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-08 18:05:17 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-08 18:05:17 +0000
commit40f4151e9f69fb58b990c16ee9eefba59b3ae29d (patch)
tree51091207da8a78b253a5bab516232f56890d224b
parentefe35aad529ea752a6301addb39b46eaf5be7af2 (diff)
- (bal) .c.o rule in openbsd-compat/Makefile.in did not make it to the
main tree while porting forward. Pointed out by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
-rw-r--r--ChangeLog3
-rw-r--r--openbsd-compat/Makefile.in2
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 182b3e83f..bebbebe5a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
120010209 120010209
2 - (bal) patch to vis.c to deal with HAVE_VIS right by Robert Mooney 2 - (bal) patch to vis.c to deal with HAVE_VIS right by Robert Mooney
3 <rjmooney@mediaone.net> 3 <rjmooney@mediaone.net>
4 - (bal) .c.o rule in openbsd-compat/Makefile.in did not make it to the
5 main tree while porting forward. Pointed out by Lutz Jaenicke
6 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4 7
520010208 820010208
6 - (djm) Don't delete external askpass program in make uninstall target. 9 - (djm) Don't delete external askpass program in make uninstall target.
diff --git a/openbsd-compat/Makefile.in b/openbsd-compat/Makefile.in
index 32312b3a4..e88a5c6b2 100644
--- a/openbsd-compat/Makefile.in
+++ b/openbsd-compat/Makefile.in
@@ -18,6 +18,8 @@ OPENBSD=base64.o bindresvport.o daemon.o getcwd.o getgrouplist.o inet_aton.o ine
18 18
19COMPAT=bsd-arc4random.o bsd-cygwin_util.o bsd-misc.o bsd-nextstep.o bsd-snprintf.o bsd-waitpid.o fake-getaddrinfo.o fake-getnameinfo.o 19COMPAT=bsd-arc4random.o bsd-cygwin_util.o bsd-misc.o bsd-nextstep.o bsd-snprintf.o bsd-waitpid.o fake-getaddrinfo.o fake-getnameinfo.o
20 20
21.c.o:
22 $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
21 23
22all: libopenbsd-compat.a 24all: libopenbsd-compat.a
23 25