diff options
Diffstat (limited to 'corba/ORBit/patches')
-rw-r--r-- | corba/ORBit/patches/patch-aa | 12 | ||||
-rw-r--r-- | corba/ORBit/patches/patch-ab | 33 | ||||
-rw-r--r-- | corba/ORBit/patches/patch-ac | 38 | ||||
-rw-r--r-- | corba/ORBit/patches/patch-ad | 14 | ||||
-rw-r--r-- | corba/ORBit/patches/patch-ae | 10 |
5 files changed, 107 insertions, 0 deletions
diff --git a/corba/ORBit/patches/patch-aa b/corba/ORBit/patches/patch-aa new file mode 100644 index 00000000000..e303938f148 --- /dev/null +++ b/corba/ORBit/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1 1998/08/20 22:07:25 agc Exp $ + +--- src/orb/orbit_poa.c.orig Thu Aug 13 21:11:35 1998 ++++ src/orb/orbit_poa.c Mon Aug 17 00:18:29 1998 +@@ -29,7 +29,6 @@ + * + */ + +-#include <alloca.h> + #include <string.h> + #include "orbit.h" + #include "orbit_poa_type.h" diff --git a/corba/ORBit/patches/patch-ab b/corba/ORBit/patches/patch-ab new file mode 100644 index 00000000000..0048fa48806 --- /dev/null +++ b/corba/ORBit/patches/patch-ab @@ -0,0 +1,33 @@ +$NetBSD: patch-ab,v 1.1 1998/08/20 22:07:25 agc Exp $ + +Install scripts correctly + +--- Makefile.in.orig Sat Aug 8 23:10:55 1998 ++++ Makefile.in Sat Aug 8 23:11:08 1998 +@@ -48,7 +48,7 @@ + INSTALL = @INSTALL@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_DATA = @INSTALL_DATA@ +-INSTALL_SCRIPT = @INSTALL_SCRIPT@ ++INSTALL_SCRIPT = ${BSD_INSTALL_SCRIPT} + transform = @program_transform_name@ + + NORMAL_INSTALL = : +@@ -86,7 +86,7 @@ + VERSION = @VERSION@ + YACC = @YACC@ + +-SUBDIRS=libIDL src test ++SUBDIRS=libIDL src + + bin_SCRIPTS=orbit-config + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +@@ -307,7 +307,7 @@ + uninstall: uninstall-recursive uninstall-am + + install-strip: +- $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install ++ $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='${INSTALL_SCRIPT}' install + installdirs: installdirs-recursive + $(mkinstalldirs) $(DATADIR)$(bindir) + diff --git a/corba/ORBit/patches/patch-ac b/corba/ORBit/patches/patch-ac new file mode 100644 index 00000000000..4ec3dfe9821 --- /dev/null +++ b/corba/ORBit/patches/patch-ac @@ -0,0 +1,38 @@ +$NetBSD: patch-ac,v 1.1 1998/08/20 22:07:25 agc Exp $ + +Use NetBSD's libtool package +Comment out erroneous setting of INSTALL variable. + +--- configure 1998/08/19 10:37:24 1.1 ++++ configure 1998/08/19 10:38:11 +@@ -1236,6 +1236,7 @@ + echo "$ac_t""no" 1>&6 + fi + ++if false; then + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' + +@@ -1281,6 +1282,7 @@ + ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \ + $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \ + || { echo "configure: error: libtool configure failed" 1>&2; exit 1; } ++fi + + # Redirect the config.log output again, so that the ltconfig log is not + # clobbered by the next message. +@@ -3261,10 +3263,10 @@ + *) # Relative path. + ac_sub_cache_file="$ac_dots$cache_file" ;; + esac +- case "$ac_given_INSTALL" in +- [/$]*) INSTALL="$ac_given_INSTALL" ;; +- *) INSTALL="$ac_dots$ac_given_INSTALL" ;; +- esac ++# case "$ac_given_INSTALL" in ++# [/$]*) INSTALL="$ac_given_INSTALL" ;; ++# *) INSTALL="$ac_dots$ac_given_INSTALL" ;; ++# esac + + echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir" + # The eval makes quoting arguments work. diff --git a/corba/ORBit/patches/patch-ad b/corba/ORBit/patches/patch-ad new file mode 100644 index 00000000000..36f52913496 --- /dev/null +++ b/corba/ORBit/patches/patch-ad @@ -0,0 +1,14 @@ +$NetBSD: patch-ad,v 1.1 1998/08/20 22:07:25 agc Exp $ + +Include <sys/types.h> before <machine/endian.h> + +--- src/ORBitutil/machine_endian.awk 1998/08/19 10:47:19 1.1 ++++ src/ORBitutil/machine_endian.awk 1998/08/19 10:47:50 +@@ -8,6 +8,7 @@ + + END { + if (def["HAVE_MACHINE_ENDIAN_H"] || def["HAVE_ENDIAN_H"] || def["HAVE_SYS_MACHINE_H"] || def["HAVE_SYS_ENDIAN_H"]) { ++ print "#include <sys/types.h>"; + if (def["HAVE_MACHINE_ENDIAN_H"]) + print "#include <machine/endian.h>"; + if (def["HAVE_MACHINE_TYPES_H"]) diff --git a/corba/ORBit/patches/patch-ae b/corba/ORBit/patches/patch-ae new file mode 100644 index 00000000000..68f6ea470d4 --- /dev/null +++ b/corba/ORBit/patches/patch-ae @@ -0,0 +1,10 @@ +$NetBSD: patch-ae,v 1.1 1998/08/20 22:07:25 agc Exp $ + +make a placeholder Makefile.in so sed doesn't puke during configure stage + +--- /dev/null Wed Aug 19 14:32:56 1998 ++++ src/services/name/Makefile.in Wed Aug 19 14:34:41 1998 +@@ -0,0 +1,3 @@ ++# NetBSD ++# ++# There might as well be something here. |