hum, forgot to kill these.

This commit is contained in:
espie 2004-03-07 19:16:40 +00:00
parent 2106dc0405
commit ef721c35f5
3 changed files with 0 additions and 66 deletions

View File

@ -1,35 +0,0 @@
$OpenBSD: patch-config_Makefile_in,v 1.3 2004/02/13 17:39:54 espie Exp $
--- config/Makefile.in.orig 2004-02-11 00:26:18.000000000 +0100
+++ config/Makefile.in 2004-02-12 18:20:55.000000000 +0100
@@ -572,6 +572,8 @@ uninstall::
rm -f $(BINDIR)/mlnet
rm -f $(BINDIR)/mlgui
+ifeq ("$(MODOCAML_NATIVE)", "Yes")
+
install:: opt
mkdir -p $(prefix)/bin
if test -e mlnet; then \
@@ -594,6 +596,22 @@ install:: opt
rm -f $(prefix)/bin/mlim; cp -f mlim $(prefix)/bin/mlim; \
fi
+else
+
+install::
+ cp -f mlnet.byte $(prefix)/bin/mlnet
+ for link in mlslsk mldonkey mlgnut mldc mlbt; do \
+ ln -s mlnet $(prefix)/bin/$$link; \
+ done
+ cp -f mlgui.byte $(prefix)/bin/mlgui
+ cp -f mlgui.byte $(prefix)/bin/mldonkey_gui
+ cp -f mlnet.byte $(prefix)/bin/mlnet+gui
+ for link in mlslsk+gui mldonkey+gui mlgnut+gui mldc+gui mlbt+gui; do \
+ ln -s mlnet+gui $(prefix)/bin/$$link; \
+ done
+ cp -f mlim.byte $(prefix)/bin/mlim;
+
+endif
ifeq ("$(COMPILE_GUI)" , "yes")

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-config_configure,v 1.3 2004/02/13 23:44:37 espie Exp $
--- config/configure.orig 2004-02-12 19:49:17.000000000 +0100
+++ config/configure 2004-02-12 19:49:34.000000000 +0100
@@ -7800,10 +7800,7 @@ _ACEOF
else
- echo "You don't have endian.h and byteswap.h installed."
- echo "this script will fallback on the old slower sha1 implementation"
- echo "see 'here' for more informations about this issue"
- SHA1_VERSION=sha1old
+ SHA1_VERSION=sha1new
fi

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-src_utils_lib_sha1_c_h,v 1.1 2004/02/13 17:39:54 espie Exp $
--- src/utils/lib/sha1_c.h.orig 2004-02-12 19:57:44.000000000 +0100
+++ src/utils/lib/sha1_c.h 2004-02-12 19:57:49.000000000 +0100
@@ -4,12 +4,7 @@
#include "../../../config/config.h"
-#if defined(HAVE_ENDIAN_H) && defined(HAVE_BYTESWAP_H)
#include "sha1new_c.h"
-#else
-#include "os_stubs.h"
-#include "sha1old_c.h"
-#endif
int sha1_begin(SHA1_CTX*);
int sha1_hash(SHA1_CTX*, const unsigned char [], unsigned long);