diff options
Diffstat (limited to 'net/arla/patches/patch-ak')
-rw-r--r-- | net/arla/patches/patch-ak | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/net/arla/patches/patch-ak b/net/arla/patches/patch-ak new file mode 100644 index 00000000000..6ab6539b9be --- /dev/null +++ b/net/arla/patches/patch-ak @@ -0,0 +1,40 @@ +$NetBSD: patch-ak,v 1.6 2005/03/15 15:58:52 wennmach Exp $ + +Building afsdir_check exposes a buildlink3 bug. Since we don't +install afsdir_check, the simples work-around is not to build +afsdir_check at all. + +Reorder libs: move libroken to the end. + + +--- arlad/Makefile.in.orig 2005-03-10 12:58:35.000000000 +0100 ++++ arlad/Makefile.in 2005-03-10 13:00:21.000000000 +0100 +@@ -25,7 +25,7 @@ + + ARLA_SBIN = arla-cli + ARLA_LIBEXEC = arlad +-NOINST_BIN = afsdir_check dump_state play_disco ++NOINST_BIN = dump_state play_disco + + MANPAGES = \ + AliasDB.5 \ +@@ -78,7 +78,7 @@ + + LIBS_common_post= ../lib/ko/libko.la ../util/libarlautil.la \ + ../lib/vers/libvers.la \ +- @LIB_roken@ $(RXKADLIB) $(KAFS_LIBS) @LIBS@ ++ $(RXKADLIB) $(KAFS_LIBS) @LIBS@ @LIB_roken@ + + LIBS_arla-cli = $(LIBS_common) \ + $(LIB_sl) @LIB_readline@ \ +@@ -245,8 +245,8 @@ + arla-cli: $(arla-cli_OBJS) $(LIBDEPENDS) + $(top_builddir)/libtool --mode=link $(CC) $(LDFLAGS) -o $@ $(arla-cli_OBJS) $(LIBS_arla-cli) + +-afsdir_check: $(afsdir_check_OBJS) +- $(top_builddir)/libtool --mode=link $(CC) $(LDFLAGS) -o $@ $(afsdir_check_OBJS) $(LIBS_afsdir_check) ++#afsdir_check: $(afsdir_check_OBJS) ++# $(top_builddir)/libtool --mode=link $(CC) $(LDFLAGS) -o $@ $(afsdir_check_OBJS) $(LIBS_afsdir_check) + + dump_state: $(dump_state_OBJS) + $(top_builddir)/libtool --mode=link $(CC) $(LDFLAGS) -o $@ $(dump_state_OBJS) $(LIBS_dump_state) |