summaryrefslogtreecommitdiff
path: root/net/arla/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'net/arla/patches/patch-ae')
-rw-r--r--net/arla/patches/patch-ae47
1 files changed, 11 insertions, 36 deletions
diff --git a/net/arla/patches/patch-ae b/net/arla/patches/patch-ae
index eea5fefc92d..963db9916c5 100644
--- a/net/arla/patches/patch-ae
+++ b/net/arla/patches/patch-ae
@@ -1,40 +1,15 @@
-$NetBSD: patch-ae,v 1.3 2001/08/09 13:48:59 wennmach Exp $
+$NetBSD: patch-ae,v 1.4 2005/03/15 15:58:52 wennmach Exp $
-Do not install libutil.a and the header files bool.h, hash.h, heap.h, list.h,
-and log.h, nor any of the man pages. There is a potential conflict with other
-libutils.
+Remove unneeded include file, else it won't compile under NetBSD-1.6.x
---- util/Makefile.in.orig Wed Oct 25 09:06:47 2000
-+++ util/Makefile.in Fri Aug 3 14:41:35 2001
-@@ -78,31 +78,8 @@
- libutil_LIB: $(libutil_OBJS)
+--- appl/lib/ka-procs.c.orig Mon Mar 14 19:33:24 2005
++++ appl/lib/ka-procs.c Mon Mar 14 19:33:38 2005
+@@ -53,7 +53,7 @@
- install: all
-- $(MKINSTALLDIRS) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
-- $(INSTALL_DATA) $(LIB) $(DESTDIR)$(libdir)/$(LIB)
-- for i in $(HEADERS); do \
-- $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir)/$$i; \
-- done ; \
-- MANPAGES='$(MANPAGES)'; for x in $$MANPAGES; do \
-- n=`echo $$x | sed 's/\(.*\)\.[1-9a-zA-Z]*$$/\1/'`; \
-- e=`echo $$x | sed 's/.*\.\([1-9a-zA-Z]*\)$$/\1/'`; \
-- f=`echo $$n | sed '$(transform)'`; \
-- $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$$e ; \
-- $(INSTALL_DATA) $(srcdir)/$$x \
-- $(DESTDIR)$(mandir)/man$$e/$$f.$$e; \
-- done
+ #ifdef HAVE_OPENSSL
+ #include <openssl/des.h>
+-#include <openssl/ui.h>
++/* #include <openssl/ui.h> */
+ #include <openssl/opensslv.h>
+ #endif
- uninstall:
-- rm -f $(DESTDIR)$(libdir)/$(LIB)
-- for i in $(HEADERS); do \
-- rm -f $(DESTDIR)$(includedir)/$$i; \
-- done ; \
-- MANPAGES='$(MANPAGES)'; for x in $$MANPAGES; do \
-- n=`echo $$x | sed 's/\(.*\)\.[1-9a-zA-Z]*$$/\1/'`; \
-- e=`echo $$x | sed 's/.*\.\([1-9a-zA-Z]*\)$$/\1/'`; \
-- f=`echo $$n | sed '$(transform)'`; \
-- rm -rf $(DESTDIR)$(mandir)/$$f.$$e; \
-- done
-
- libutil.a: $(libutil_OBJS)
- $(AR) cr $@ $(libutil_OBJS)