summaryrefslogtreecommitdiff
path: root/net/ORBit/patches
AgeCommit message (Collapse)AuthorFilesLines
2006-03-31Welcome to the brave new world of gettext-0.14.5 -- if a source filejlam1-2/+11
includes <libintl.h>, then we must ensure that the resulting object is linked against -lintl. This ensures that the correct *printf() functions are used across all platforms.
2006-03-12Not all compilers accept --disable-shared. Instead of trying to getjschauma1-3/+3
the right one for each one, just get rid of this flag, as it concerns the creation of a test binary anyway. (This allows ORBit to compile and install under IRIX.)
2005-08-18fix config.h to include <alloca.h> if found (ORBIT_HAVE_ALLOCA_H wasgrant1-5/+9
not being defined, so alloca.h was never included). fixes build with sunpro.
2005-04-27Fix AC_DEFUN argument quoting for automake 1.8 and newer. Addresseswiz1-0/+13
part of PR 30053. No PKGREVISION bump because most people won't care.
2005-04-27Fix AC_DEFUN argument quoting for automake 1.8 and newer. Addresseswiz1-0/+13
part of PR 30053. No PKGREVISION bump because most people won't care.
2005-03-09Add missing blank line at top of patch file.jmmv1-1/+2
2005-01-13Changes 0.5.17:adam4-47/+23
* Bug fixes
2004-11-12Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're addedjlam1-10/+1
automatically by pthread.buildlink3.mk. Also, factor out the pthread library out of PTHREAD_LDFLAGS into a standalone variable PTHREAD_LIBS and use it in packages where necessary (usually the ones that don't have a GNU configure script).
2003-12-16Properly check for alloca.h and use if necessary, fixing USE_SUNPRO build.sketch3-11/+43
2003-10-18Add RCS IDscjep1-0/+1
2003-10-07Build orbit-ird dynamic, not static.hubertf1-5/+5
This makes this package compile on Solaris and Linux (plus - hey! - static linking is really from the past millennium!) Fixes PR 23032.
2003-08-29Use the IOV_MAX fix only in NetBSDmartti1-5/+8
2003-07-11use PTHREAD_LDFLAGS instead of -lpthread for portability, andgrant1-2/+2
include pthread.buildlink2.mk.
2003-01-19Replace wrap_writev with a simpler solution (old one had some problems).wiz1-39/+9
Fixes endless loop problems. Report and suggestion by Greg Troxel gdt at ir bbn com in private mail; some comments by Alistair Crooks; patch reviewed and okayed by Jaromir Dolecek. Bump PKGREVISION to 3.
2002-11-25* NetBSD's (and most likely Linux's) indent program is sufficient for ORBit,jlam2-11/+47
so don't depend on devel/gindent on these two platforms. * USE_BUILDLINK2 implies AUTOMAKE_OVERRIDE=NO. * Don't use the hackish test for libwrap supplied in the configure script. Instead, just specify the necessary variables to link against libwrap in the package Makefile. This closes PR 18712 by Greg A. Woods.
2002-10-30Replace hand made patches for pkgconfig tempates with PKGCONFIG_OVERRIDE.rh2-22/+0
2002-09-27Remove dependency on automake by patching the Makefile.in file instead ofjlam1-4/+4
the Makefile.am file.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam3-15/+3
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
2002-07-18Patch the various pkgconfig files to include proper -Wl,-R options.rh2-0/+22
Bump PKGREVISION
2002-04-25Upgrade to version 0.5.15 from 0.5.13nb1 of the ORBit package - diffsagc8-38/+42
provided by Thomas Klausner. Diffs from previous version: 2002-03-20 Michael Meeks <michael@ximian.com> * configure.in: copy the autoconf macro into here so we can rely on it not changing across autoconf versions. 2002-03-11 Michael Meeks <michael@ximian.com> * src/IIOP/giop-msg-buffer.c kill #define writev mess. (giop_send_buffer_write): handle EINTR, handle EAGAIN correctly, handle short writev's correctly, test thorougly. * src/ORBitutil/compat.c (g_writev): kill this abomination. 2002-02-11 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * src/orb/allocators.h, src/orb/allocators.c (ORBit_alloc_2, ORBit_free): Make the free marker really always sit directly in front of the memory block, not at some random lower position. 2002-02-09 Elliot Lee <sopwith@redhat.com> * src/ORBitutil/os-feature-alloca.h: Don't redefine alloca if it is already defined. 2002-01-27 Darin Adler <darin@bentspoon.com> * test/everything/Makefile.am: Added -lm -- can't build without it. 2002-01-25 Mark McLoughlin <mark@skynet.ie> * configure.in: (AC_CHECK_ALIGNOF): error out if an alignment is found to be zero. Thomas thought that the modification to src/IIOP/giop-msg-buffer.c to "kill #define writev mess" might mean that we could drop the NetBSD-specific wrapper for writev(2), but sadly this isn't so - configure undefines HAVE_LIMITED_WRITEV on NetBSD, and rightly so, since IOV_MAX (1024) iovecs can be written, not 50. However, we still have the basic "attempt to send more than IOV_MAX iovecs and you get EINVAL" problem with our writev(2) implementation.
2002-04-04- Correctly detect a.out shared library (developers should test on a.out env ;)itohy2-7/+21
- Create fake libtool object (*.lo) if no shared libwrap exists.
2002-03-22The ORBit code doesn't check the number of iovec structs before itagc1-0/+44
calls writev(2). Some of the applications which use ORBit, such as oaf, can send 1214 iovecs, which is slightly more than IOV_MAX. Add a wrapper for writev(2), to check the number of iovecs passed to writev, and loop, sending MIN(IOV_MAX, count) until the iovecs have all been written.
2002-01-15Update ORBit to 0.5.13. Changes are bugfixes and minor interfacerh2-8/+8
enhancements.
2001-10-04Define _POSIX_THREAD_SYSCALL_SOFT=1 so syscalls won't block other threads.rh2-6/+21
Bump version to 0.5.8nb1
2001-08-28Remove BUILD_DEPENDS on autoconf by patching configure instead ofskrll1-12/+13
configure.in.
2001-06-16Refer to glib-config as $GLIB_CONFIG in the configure script.jlam1-11/+23
2001-05-21Update ORBit to 0.5.8. Changes are bugfixes and new features needed byrh1-3/+3
bonobo-1.0.4 (sorry, no further details are known to me).
2001-03-13Make sure the shared version of libwrap is picked up in the configureskrll1-0/+15
script on a.out platforms. This avoids using a horrible hack that the new libtool doesn't like.
2001-02-07Make this build on m68k.fredb1-11/+15
2001-01-14Don't explictly check for the GNU "xgettext". The Solaris one works fine.tron1-0/+17
2000-10-17Update ORBit to 0.5.4. I couldn't find a list of changes from version,jlam8-86/+100
0.5.3 -- only that 0.5.4 is the latest stable version of ORBit. The pkgsrc-related changes are: * Compile and link libpopt statically into ORBit. This is really a small library, and there are more recent versions available if we with to add it to pkgsrc. Also don't install this library. * Compile the tcpd-specific code in libIIOP.
2000-09-05make libIDL install/deinstall cleanly on both ELF and a.out.dmcmahill1-7/+5
2000-08-09Update to 0.5.3, provided by Dan Winship. Changes are mainly bugfixes.wiz6-59/+63
2000-07-11fix compilation on a.out.wiz1-3/+18
Closes pkg/10559.
2000-07-10Update to 0.5.2. Changes seem to be bugfixes (no ChangeLog available).wiz1-15/+4
2000-06-20Remove unnecessary patches to configure now that we USE_LIBTOOL.jlam3-65/+0
2000-05-30update to 0.5.1drochner6-61/+57
Sorry, didn't fing a list of changes in the distribution nor on the website.
2000-05-02Remove patches to deal with two bugs involving configure's handling ofdanw1-31/+1
INSTALL which have both been worked around in bsd.pkg.mk now.
1999-11-13Repair patch broken my "no fuzz" cleanup.tron1-7/+5
1999-11-12New patches supplied by UEBAYASHI 'UMA' Masao which apply without fuzz.tron2-10/+12
1999-10-22Update "ORBit" package to version 0.5.0 included in GNOME 1.0.53 release.tron6-60/+50
1999-04-27Add "-Wl,-R" to linker option list in "orbit-config".tron1-3/+3
1999-04-14Fix elf handling in this pkg. (add some missing -lwrap's)garbled2-6/+26
1999-04-07Make this patch apply cleanly.agc1-8/+1
1999-04-04Update "ORBit" package to version 0.4.2.tron4-45/+42
1999-03-11Avoid weird error message during build.tron1-2/+14
1999-03-05Update "ORBit" package to version 0.4.0.tron10-46/+149
1998-12-19Update "ORBit" package to version 0.3.90.tron3-28/+33
1998-10-05Upgrade to version 0.3.0 of ORBit (a high-performance CORBA ORB withagc3-26/+16
support for the C language).
1998-09-04Make this package use GNU indent, which can act as a filter, ratheragc1-0/+18
than NetBSD's indent(1). As pointed out by Matthias Drochner.