pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/ORBit fix config.h to include <alloca.h> if found ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/be469bad4c94
branches:  trunk
changeset: 498263:be469bad4c94
user:      grant <grant%pkgsrc.org@localhost>
date:      Thu Aug 18 05:46:16 2005 +0000

description:
fix config.h to include <alloca.h> if found (ORBIT_HAVE_ALLOCA_H was
not being defined, so alloca.h was never included).

fixes build with sunpro.

diffstat:

 net/ORBit/distinfo         |   4 ++--
 net/ORBit/patches/patch-ap |  14 +++++++++-----
 2 files changed, 11 insertions(+), 7 deletions(-)

diffs (41 lines):

diff -r 568aa28af5ea -r be469bad4c94 net/ORBit/distinfo
--- a/net/ORBit/distinfo        Thu Aug 18 05:43:32 2005 +0000
+++ b/net/ORBit/distinfo        Thu Aug 18 05:46:16 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.26 2005/04/27 09:06:39 wiz Exp $
+$NetBSD: distinfo,v 1.27 2005/08/18 05:46:16 grant Exp $
 
 SHA1 (ORBit-0.5.17.tar.bz2) = c8b2daef43b028d65d0ab82f0a88558942be6217
 RMD160 (ORBit-0.5.17.tar.bz2) = 9087d6659adbd0066d76a3eed5cc2799de640df4
@@ -17,4 +17,4 @@
 SHA1 (patch-am) = f52369447d04a382d6e93a6bddaf3962a3ab6677
 SHA1 (patch-an) = fa9bb500ddcd0ec8e64b5ff1edbe0f02f5cb0f39
 SHA1 (patch-ao) = b80bf3da551bacccd23a7a27677be8e985e6b543
-SHA1 (patch-ap) = 46d1dc2c930090d88e6745025cd0cfefc55c7405
+SHA1 (patch-ap) = 83bbb85866a18d26cc88edaf1eada6108898affc
diff -r 568aa28af5ea -r be469bad4c94 net/ORBit/patches/patch-ap
--- a/net/ORBit/patches/patch-ap        Thu Aug 18 05:43:32 2005 +0000
+++ b/net/ORBit/patches/patch-ap        Thu Aug 18 05:46:16 2005 +0000
@@ -1,13 +1,17 @@
-$NetBSD: patch-ap,v 1.2 2005/01/13 09:58:57 adam Exp $
+$NetBSD: patch-ap,v 1.3 2005/08/18 05:46:16 grant Exp $
 
---- config.h.in.orig   2002-06-06 11:25:14.000000000 +0000
+--- config.h.in.orig   2002-06-06 21:25:14.000000000 +1000
 +++ config.h.in
-@@ -35,7 +35,7 @@
+@@ -33,9 +33,10 @@
+ #undef HAVE_HOSTS_ACCESS
+ #undef HAVE_TCPD_H
  
- #undef ORBIT_HAVE_ALLOCA_H
+-#undef ORBIT_HAVE_ALLOCA_H
++/* Define if you have the <alloca.h> header file. */
++#undef HAVE_ALLOCA_H
  
 -#ifdef ORBIT_HAVE_ALLOCA_H
-+#if ORBIT_HAVE_ALLOCA_H
++#if HAVE_ALLOCA_H
  #include <alloca.h>
  #endif
  



Home | Main Index | Thread Index | Old Index