summaryrefslogtreecommitdiff
path: root/mbone/common-mml/patches
diff options
context:
space:
mode:
authorhubertf <hubertf>2000-12-17 09:46:00 +0000
committerhubertf <hubertf>2000-12-17 09:46:00 +0000
commitaa5561465cff4df600469724a238e72a0060df01 (patch)
tree907bfef8035826314226b81e09bc913fcbaf9168 /mbone/common-mml/patches
parent045023f2ebd42e099ef9b51f8df52dd1e0af1cce (diff)
downloadpkgsrc-aa5561465cff4df600469724a238e72a0060df01.tar.gz
Import common-mml-1.2.0:
The UCL common multimedia library implements a number of algorithms and protocols needed by a number of our applications. It compiles standalone on a range of Unix systems (Solaris, Linux, Irix, FreeBSD) and on Windows 95/98/NT. The following protocols/algorithms are included in the library: * Base64 encoding/decoding * Binary tree * Random number * HMAC authentication * MD5 * DES * RTP * Mbus
Diffstat (limited to 'mbone/common-mml/patches')
-rw-r--r--mbone/common-mml/patches/patch-aa22
-rw-r--r--mbone/common-mml/patches/patch-ab35
2 files changed, 57 insertions, 0 deletions
diff --git a/mbone/common-mml/patches/patch-aa b/mbone/common-mml/patches/patch-aa
new file mode 100644
index 00000000000..96b13cbc176
--- /dev/null
+++ b/mbone/common-mml/patches/patch-aa
@@ -0,0 +1,22 @@
+$NetBSD: patch-aa,v 1.1.1.1 2000/12/17 09:46:00 hubertf Exp $
+
+--- config_unix.h.orig Sat Dec 16 07:55:38 2000
++++ config_unix.h
+@@ -41,8 +41,6 @@
+ #ifndef _CONFIG_UNIX_H
+ #define _CONFIG_UNIX_H
+
+-#include "uclconf.h"
+-
+ #include <limits.h>
+ #include <sys/types.h>
+ #include <sys/time.h>
+@@ -71,6 +69,8 @@
+ #include <sys/ioctl.h>
+ #include <netdb.h>
+ #include <arpa/inet.h>
++
++#include "uclconf.h"
+
+ #ifdef HAVE_SYS_WAIT_H
+ #include <sys/wait.h>
diff --git a/mbone/common-mml/patches/patch-ab b/mbone/common-mml/patches/patch-ab
new file mode 100644
index 00000000000..395cf37c5ed
--- /dev/null
+++ b/mbone/common-mml/patches/patch-ab
@@ -0,0 +1,35 @@
+$NetBSD: patch-ab,v 1.1.1.1 2000/12/17 09:46:00 hubertf Exp $
+
+--- Makefile.in.orig Tue May 16 19:02:48 2000
++++ Makefile.in
+@@ -6,11 +6,11 @@
+ DEFS = @DEFS@
+ CFLAGS = @CFLAGS@ $(DEFS)
+ LIBS = @LIBS@
+-CC = @CC@
++CC = ${LIBTOOL} @CC@
+ AR = ar
+ RANLIB = @RANLIB@
+ HOST = @host@
+-TARGET = libuclmmbase.a
++TARGET = libuclmmbase.la
+
+ exec_prefix=@exec_prefix@
+
+@@ -30,8 +30,8 @@
+ $(CC) $(TEST_OBJS) $(CFLAGS) $(TARGET) $(LIBS) -o test-libcommon
+
+ $(TARGET): $(OBJS)
+- $(AR) r $(TARGET) $(OBJS)
+- $(RANLIB) $(TARGET)
++ $(CC) $(OBJS:S/.o/.lo/) -o $(TARGET) \
++ -rpath ${PREFIX}/lib -version-info 1:2:0
+
+ version.h: VERSION
+ sed -e 's/.*/#define CCL_VERSION "v&"/' VERSION > version.h
+@@ -57,3 +57,5 @@
+ depend: $(SRCS)
+ makedepend $(DEFS) $(INC) $(SRCS)
+
++install:
++ ${LIBTOOL} install -c ${TARGET} ${PREFIX}/lib