change log for rtems (2011-05-11)
rtems-vc at rtems.org
rtems-vc at rtems.org
Wed May 11 15:10:16 UTC 2011
*jennifer*:
2011-05-11 Jennifer Averett <Jennifer.Averett at OARcorp.com>
* score/Makefile.am, score/preinstall.am,
score/include/rtems/score/percpu.h, score/src/percpu.c,
score/src/threadcreateidle.c: Modifications to restrict compilation
of SMP only code to when SMP is enabled. Entire SMP specific files
are disabled via Makefile.am.
M 1.2812 cpukit/ChangeLog
M 1.98 cpukit/score/Makefile.am
M 1.6 cpukit/score/include/rtems/score/percpu.h
M 1.30 cpukit/score/preinstall.am
M 1.6 cpukit/score/src/percpu.c
M 1.19 cpukit/score/src/threadcreateidle.c
diff -u rtems/cpukit/ChangeLog:1.2811 rtems/cpukit/ChangeLog:1.2812
--- rtems/cpukit/ChangeLog:1.2811 Wed May 11 04:38:00 2011
+++ rtems/cpukit/ChangeLog Wed May 11 09:22:34 2011
@@ -1,3 +1,11 @@
+2011-05-11 Jennifer Averett <Jennifer.Averett at OARcorp.com>
+
+ * score/Makefile.am, score/preinstall.am,
+ score/include/rtems/score/percpu.h, score/src/percpu.c,
+ score/src/threadcreateidle.c: Modifications to restrict compilation
+ of SMP only code to when SMP is enabled. Entire SMP specific files
+ are disabled via Makefile.am.
+
2011-05-11 Sebastian Huber <sebastian.huber at embedded-brains.de>
* libblock/include/rtems/bdbuf.h: Documentation.
diff -u rtems/cpukit/score/Makefile.am:1.97 rtems/cpukit/score/Makefile.am:1.98
--- rtems/cpukit/score/Makefile.am:1.97 Wed Apr 27 12:18:59 2011
+++ rtems/cpukit/score/Makefile.am Wed May 11 09:22:34 2011
@@ -36,8 +36,13 @@
include/rtems/score/timestamp64.h include/rtems/score/tod.h \
include/rtems/score/tqdata.h include/rtems/score/userext.h \
include/rtems/score/watchdog.h include/rtems/score/wkspace.h \
- include/rtems/score/cpuopts.h include/rtems/score/basedefs.h \
+ include/rtems/score/cpuopts.h include/rtems/score/basedefs.h
+
+if HAS_SMP
+include_rtems_score_HEADERS += \
include/rtems/score/smplock.h include/rtems/score/smp.h
+endif
+
if HAS_PTHREADS
include_rtems_score_HEADERS += include/rtems/score/corespinlock.h \
@@ -91,7 +96,9 @@
libscore_a_SOURCES += src/mpci.c src/objectmp.c src/threadmp.c
endif
+if HAS_SMP
libscore_a_SOURCES += src/smp.c src/smplock.c
+endif
## CORE_APIMUTEX_C_FILES
libscore_a_SOURCES += src/apimutex.c src/apimutexallocate.c \
diff -u rtems/cpukit/score/include/rtems/score/percpu.h:1.5 rtems/cpukit/score/include/rtems/score/percpu.h:1.6
--- rtems/cpukit/score/include/rtems/score/percpu.h:1.5 Wed Mar 16 15:05:06 2011
+++ rtems/cpukit/score/include/rtems/score/percpu.h Wed May 11 09:22:35 2011
@@ -27,6 +27,11 @@
#if defined(RTEMS_SMP)
#include <rtems/score/smplock.h>
#endif
+
+ /*
+ * NOTE: This file MUST be included on non-smp systems as well
+ * in order to define bsp_smp_processor_id.
+ */
#include <rtems/bspsmp.h>
#endif
diff -u rtems/cpukit/score/preinstall.am:1.29 rtems/cpukit/score/preinstall.am:1.30
--- rtems/cpukit/score/preinstall.am:1.29 Wed Apr 27 12:18:59 2011
+++ rtems/cpukit/score/preinstall.am Wed May 11 09:22:35 2011
@@ -195,6 +195,7 @@
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/basedefs.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/basedefs.h
+if HAS_SMP
$(PROJECT_INCLUDE)/rtems/score/smplock.h: include/rtems/score/smplock.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/smplock.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/smplock.h
@@ -202,7 +203,7 @@
$(PROJECT_INCLUDE)/rtems/score/smp.h: include/rtems/score/smp.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/smp.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/smp.h
-
+endif
if HAS_PTHREADS
$(PROJECT_INCLUDE)/rtems/score/corespinlock.h: include/rtems/score/corespinlock.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/corespinlock.h
diff -u rtems/cpukit/score/src/percpu.c:1.5 rtems/cpukit/score/src/percpu.c:1.6
--- rtems/cpukit/score/src/percpu.c:1.5 Wed Apr 27 12:18:59 2011
+++ rtems/cpukit/score/src/percpu.c Wed May 11 09:22:35 2011
@@ -17,12 +17,13 @@
#include <rtems/score/thread.h>
#include <rtems/score/percpu.h>
#include <rtems/score/wkspace.h>
-#include <rtems/score/wkspace.h>
#include <rtems/config.h>
-#include <rtems/score/smp.h>
#include <string.h>
#if defined(RTEMS_SMP)
+
+ #include <rtems/score/smp.h>
+
void _SMP_Handler_initialize(void)
{
int cpu;
diff -u rtems/cpukit/score/src/threadcreateidle.c:1.18 rtems/cpukit/score/src/threadcreateidle.c:1.19
--- rtems/cpukit/score/src/threadcreateidle.c:1.18 Wed Apr 27 12:18:59 2011
+++ rtems/cpukit/score/src/threadcreateidle.c Wed May 11 09:22:35 2011
@@ -30,7 +30,9 @@
#include <rtems/score/userext.h>
#include <rtems/score/wkspace.h>
#include <rtems/config.h>
-#include <rtems/score/smp.h>
+#if defined(RTEMS_SMP)
+ #include <rtems/score/smp.h>
+#endif
static inline void _Thread_Create_idle_helper(
uint32_t name_u32,
*ralf*:
2011-05-11 Ralf Corsépius <ralf.corsepius at rtems.org>
* libnetworking/net/bpf.h, libnetworking/net/if.h,
libnetworking/net/if_ppp.h, libnetworking/net/if_pppvar.h
libnetworking/net/if_var.h, libnetworking/net/raw_cb.h,
libnetworking/net/slcompress.h: Make self-contained.
M 1.2813 cpukit/ChangeLog
diff -u rtems/cpukit/ChangeLog:1.2812 rtems/cpukit/ChangeLog:1.2813
--- rtems/cpukit/ChangeLog:1.2812 Wed May 11 09:22:34 2011
+++ rtems/cpukit/ChangeLog Wed May 11 09:31:55 2011
@@ -1,3 +1,10 @@
+2011-05-11 Ralf Corsépius <ralf.corsepius at rtems.org>
+
+ * libnetworking/net/bpf.h, libnetworking/net/if.h,
+ libnetworking/net/if_ppp.h, libnetworking/net/if_pppvar.h
+ libnetworking/net/if_var.h, libnetworking/net/raw_cb.h,
+ libnetworking/net/slcompress.h: Make self-contained.
+
2011-05-11 Jennifer Averett <Jennifer.Averett at OARcorp.com>
* score/Makefile.am, score/preinstall.am,
*ralf*:
Make self-contained.
M 1.4 cpukit/libnetworking/net/bpf.h
M 1.24 cpukit/libnetworking/net/if.h
M 1.8 cpukit/libnetworking/net/if_ppp.h
M 1.12 cpukit/libnetworking/net/if_pppvar.h
M 1.8 cpukit/libnetworking/net/if_var.h
M 1.8 cpukit/libnetworking/net/raw_cb.h
M 1.3 cpukit/libnetworking/net/slcompress.h
M 1.5 cpukit/libnetworking/netinet/icmp_var.h
M 1.10 cpukit/libnetworking/netinet/if_ether.h
M 1.2 cpukit/libnetworking/netinet/igmp.h
M 1.8 cpukit/libnetworking/netinet/in_pcb.h
M 1.9 cpukit/libnetworking/netinet/in_var.h
M 1.10 cpukit/libnetworking/netinet/ip.h
M 1.3 cpukit/libnetworking/netinet/ip_fw.h
M 1.7 cpukit/libnetworking/netinet/ip_icmp.h
M 1.4 cpukit/libnetworking/netinet/ip_mroute.h
M 1.8 cpukit/libnetworking/netinet/ip_var.h
M 1.8 cpukit/libnetworking/netinet/tcp.h
M 1.4 cpukit/libnetworking/netinet/tcp_debug.h
M 1.3 cpukit/libnetworking/netinet/tcpip.h
M 1.6 cpukit/libnetworking/netinet/udp_var.h
diff -u rtems/cpukit/libnetworking/net/bpf.h:1.3 rtems/cpukit/libnetworking/net/bpf.h:1.4
--- rtems/cpukit/libnetworking/net/bpf.h:1.3 Tue Apr 20 07:20:42 2004
+++ rtems/cpukit/libnetworking/net/bpf.h Wed May 11 09:31:40 2011
@@ -44,6 +44,8 @@
#ifndef _NET_BPF_H_
#define _NET_BPF_H_
+#include <sys/time.h> /* struct timeval */
+
/* BSD style release date */
#define BPF_RELEASE 199606
diff -u rtems/cpukit/libnetworking/net/if.h:1.23 rtems/cpukit/libnetworking/net/if.h:1.24
--- rtems/cpukit/libnetworking/net/if.h:1.23 Thu Mar 24 04:31:25 2011
+++ rtems/cpukit/libnetworking/net/if.h Wed May 11 09:31:40 2011
@@ -48,6 +48,7 @@
#define __BSD_VISIBLE 1
#endif
#include <inttypes.h>
+#include <sys/socket.h> /* struct sockaddr */
#endif
#ifdef _KERNEL
diff -u rtems/cpukit/libnetworking/net/if_ppp.h:1.7 rtems/cpukit/libnetworking/net/if_ppp.h:1.8
--- rtems/cpukit/libnetworking/net/if_ppp.h:1.7 Wed Feb 4 09:47:39 2009
+++ rtems/cpukit/libnetworking/net/if_ppp.h Wed May 11 09:31:40 2011
@@ -26,6 +26,9 @@
#ifndef _IF_PPP_H_
#define _IF_PPP_H_
+#include <net/ppp_defs.h> /* NPmode */
+#include <net/if.h> /* IFNAMSIZ */
+
/*
* Packet sizes
*/
diff -u rtems/cpukit/libnetworking/net/if_pppvar.h:1.11 rtems/cpukit/libnetworking/net/if_pppvar.h:1.12
--- rtems/cpukit/libnetworking/net/if_pppvar.h:1.11 Wed Feb 23 08:38:25 2011
+++ rtems/cpukit/libnetworking/net/if_pppvar.h Wed May 11 09:31:40 2011
@@ -42,17 +42,23 @@
* $FreeBSD: src/sys/net/if_pppvar.h,v 1.26 2006/12/05 18:54:21 ume Exp $
*/
+/*
+ * $Id$
+ */
+
#ifndef _NET_IF_PPPVAR_H_
#define _NET_IF_PPPVAR_H_
+#include <net/if_var.h> /* struct ifnet */
+#include <net/ppp_defs.h> /* struct pppstat */
+#include <rtems/rtems/types.h> /* rtems_id */
+
#ifdef __cplusplus
extern "C" {
#endif
-/*
- * $Id$
- */
-
+struct proc;
+
/*
* Supported network protocols. These values are used for
* indexing sc_npmode.
diff -u rtems/cpukit/libnetworking/net/if_var.h:1.7 rtems/cpukit/libnetworking/net/if_var.h:1.8
--- rtems/cpukit/libnetworking/net/if_var.h:1.7 Wed Mar 2 08:18:26 2011
+++ rtems/cpukit/libnetworking/net/if_var.h Wed May 11 09:31:40 2011
@@ -37,6 +37,9 @@
#ifndef _NET_IF_VAR_H_
#define _NET_IF_VAR_H_
+#include <net/if.h> /* struct if_data */
+#include <sys/ioccom.h> /* ioctl_command_t */
+
/*
* Structures defining a network interface, providing a packet
* transport mechanism (ala level 0 of the PUP protocols).
diff -u rtems/cpukit/libnetworking/net/raw_cb.h:1.7 rtems/cpukit/libnetworking/net/raw_cb.h:1.8
--- rtems/cpukit/libnetworking/net/raw_cb.h:1.7 Wed Mar 2 08:18:26 2011
+++ rtems/cpukit/libnetworking/net/raw_cb.h Wed May 11 09:31:40 2011
@@ -37,6 +37,8 @@
#ifndef _NET_RAW_CB_H_
#define _NET_RAW_CB_H_
+#include <sys/socket.h>
+
#include <sys/queue.h>
/*
diff -u rtems/cpukit/libnetworking/net/slcompress.h:1.2 rtems/cpukit/libnetworking/net/slcompress.h:1.3
--- rtems/cpukit/libnetworking/net/slcompress.h:1.2 Tue Mar 27 21:16:27 2007
+++ rtems/cpukit/libnetworking/net/slcompress.h Wed May 11 09:31:40 2011
@@ -36,6 +36,10 @@
#ifndef _NET_SLCOMPRESS_H_
#define _NET_SLCOMPRESS_H_
+#include <netinet/ip.h> /* struct ip */
+
+struct mbuf;
+
#define MAX_STATES 16 /* must be > 2 and < 256 */
#define MAX_HDR 128
diff -u rtems/cpukit/libnetworking/netinet/icmp_var.h:1.4 rtems/cpukit/libnetworking/netinet/icmp_var.h:1.5
--- rtems/cpukit/libnetworking/netinet/icmp_var.h:1.4 Tue May 30 10:12:54 2006
+++ rtems/cpukit/libnetworking/netinet/icmp_var.h Wed May 11 09:35:03 2011
@@ -37,6 +37,8 @@
#ifndef _NETINET_ICMP_VAR_H_
#define _NETINET_ICMP_VAR_H_
+#include <netinet/ip_icmp.h> /* ICMP_MAXTYPE */
+
/*
* Variables related to this implementation
* of the internet control message protocol.
diff -u rtems/cpukit/libnetworking/netinet/if_ether.h:1.9 rtems/cpukit/libnetworking/netinet/if_ether.h:1.10
--- rtems/cpukit/libnetworking/netinet/if_ether.h:1.9 Mon Mar 26 02:12:36 2007
+++ rtems/cpukit/libnetworking/netinet/if_ether.h Wed May 11 09:35:03 2011
@@ -37,6 +37,7 @@
#ifndef _NETINET_IF_ETHER_H_
#define _NETINET_IF_ETHER_H_
+#include <netinet/in.h> /* struct in_addr */
#include <net/ethernet.h>
#include <net/if_arp.h>
diff -u rtems/cpukit/libnetworking/netinet/igmp.h:1.1 rtems/cpukit/libnetworking/netinet/igmp.h:1.2
--- rtems/cpukit/libnetworking/netinet/igmp.h:1.1 Wed Aug 19 16:32:19 1998
+++ rtems/cpukit/libnetworking/netinet/igmp.h Wed May 11 09:35:03 2011
@@ -41,6 +41,8 @@
#ifndef _NETINET_IGMP_H_
#define _NETINET_IGMP_H_
+#include <netinet/in.h> /* struct in_addr */
+
/*
* Internet Group Management Protocol (IGMP) definitions.
*
diff -u rtems/cpukit/libnetworking/netinet/in_pcb.h:1.7 rtems/cpukit/libnetworking/netinet/in_pcb.h:1.8
--- rtems/cpukit/libnetworking/netinet/in_pcb.h:1.7 Wed Mar 2 08:39:31 2011
+++ rtems/cpukit/libnetworking/netinet/in_pcb.h Wed May 11 09:35:03 2011
@@ -38,6 +38,8 @@
#define _NETINET_IN_PCB_H_
#include <sys/queue.h>
+#include <netinet/in.h> /* struct in_addr */
+#include <net/route.h> /* struct route */
/*
* Common structure pcb for internet protocol implementation.
diff -u rtems/cpukit/libnetworking/netinet/in_var.h:1.8 rtems/cpukit/libnetworking/netinet/in_var.h:1.9
--- rtems/cpukit/libnetworking/netinet/in_var.h:1.8 Wed Mar 2 08:39:31 2011
+++ rtems/cpukit/libnetworking/netinet/in_var.h Wed May 11 09:35:03 2011
@@ -35,6 +35,9 @@
#define _NETINET_IN_VAR_H_
#include <sys/queue.h>
+#include <net/if_var.h> /* struct ifaddr */
+#include <netinet/in.h> /* struct in_addr */
+
#if !defined(__rtems__)
#include <sys/fnv_hash.h>
#endif
diff -u rtems/cpukit/libnetworking/netinet/ip.h:1.9 rtems/cpukit/libnetworking/netinet/ip.h:1.10
--- rtems/cpukit/libnetworking/netinet/ip.h:1.9 Thu Mar 24 04:31:25 2011
+++ rtems/cpukit/libnetworking/netinet/ip.h Wed May 11 09:35:03 2011
@@ -38,6 +38,8 @@
#define _NETINET_IP_H_
#include <sys/cdefs.h>
+#include <netinet/in.h> /* struct in_addr */
+#include <netinet/in_systm.h> /* n_long */
/*
* Definitions for internet protocol version 4.
diff -u rtems/cpukit/libnetworking/netinet/ip_fw.h:1.2 rtems/cpukit/libnetworking/netinet/ip_fw.h:1.3
--- rtems/cpukit/libnetworking/netinet/ip_fw.h:1.2 Tue Apr 20 07:27:01 2004
+++ rtems/cpukit/libnetworking/netinet/ip_fw.h Wed May 11 09:35:03 2011
@@ -17,7 +17,9 @@
#ifndef _IP_FW_H
#define _IP_FW_H
+#include <sys/queue.h> /* LIST_ENTRY */
#include <net/if.h>
+#include <netinet/in.h> /* struct in_addr */
/*
* This union structure identifies an interface, either explicitly
diff -u rtems/cpukit/libnetworking/netinet/ip_icmp.h:1.6 rtems/cpukit/libnetworking/netinet/ip_icmp.h:1.7
--- rtems/cpukit/libnetworking/netinet/ip_icmp.h:1.6 Thu Feb 24 08:57:34 2011
+++ rtems/cpukit/libnetworking/netinet/ip_icmp.h Wed May 11 09:35:03 2011
@@ -37,6 +37,9 @@
#ifndef _NETINET_IP_ICMP_H_
#define _NETINET_IP_ICMP_H_
+#include <netinet/in.h> /* struct in_addr */
+#include <netinet/ip.h> /* struct ip */
+
/*
* Interface Control Message Protocol Definitions.
* Per RFC 792, September 1981.
diff -u rtems/cpukit/libnetworking/netinet/ip_mroute.h:1.3 rtems/cpukit/libnetworking/netinet/ip_mroute.h:1.4
--- rtems/cpukit/libnetworking/netinet/ip_mroute.h:1.3 Tue Mar 27 05:17:09 2007
+++ rtems/cpukit/libnetworking/netinet/ip_mroute.h Wed May 11 09:35:03 2011
@@ -41,6 +41,9 @@
#ifndef _NETINET_IP_MROUTE_H_
#define _NETINET_IP_MROUTE_H_
+#include <netinet/in.h> /* struct in_addr */
+#include <net/route.h> /* struct route */
+
/*
* Definitions for IP multicast forwarding.
*
diff -u rtems/cpukit/libnetworking/netinet/ip_var.h:1.7 rtems/cpukit/libnetworking/netinet/ip_var.h:1.8
--- rtems/cpukit/libnetworking/netinet/ip_var.h:1.7 Mon Mar 26 01:01:00 2007
+++ rtems/cpukit/libnetworking/netinet/ip_var.h Wed May 11 09:35:03 2011
@@ -37,6 +37,8 @@
#ifndef _NETINET_IP_VAR_H_
#define _NETINET_IP_VAR_H_
+#include <netinet/in.h> /* struct in_addr */
+
/*
* Overlay for ip header used by other protocols (tcp, udp).
*/
diff -u rtems/cpukit/libnetworking/netinet/tcp.h:1.7 rtems/cpukit/libnetworking/netinet/tcp.h:1.8
--- rtems/cpukit/libnetworking/netinet/tcp.h:1.7 Thu Mar 24 04:31:25 2011
+++ rtems/cpukit/libnetworking/netinet/tcp.h Wed May 11 09:35:03 2011
@@ -40,6 +40,7 @@
#include <sys/cdefs.h>
#if __BSD_VISIBLE
+#include <machine/endian.h> /* BYTE_ORDER */
typedef u_int32_t tcp_seq;
diff -u rtems/cpukit/libnetworking/netinet/tcp_debug.h:1.3 rtems/cpukit/libnetworking/netinet/tcp_debug.h:1.4
--- rtems/cpukit/libnetworking/netinet/tcp_debug.h:1.3 Thu Feb 24 00:48:52 2011
+++ rtems/cpukit/libnetworking/netinet/tcp_debug.h Wed May 11 09:35:03 2011
@@ -37,6 +37,9 @@
#ifndef _NETINET_TCP_DEBUG_H_
#define _NETINET_TCP_DEBUG_H_
+#include <netinet/tcpip.h> /* struct tcpiphdr */
+#include <netinet/tcp_var.h> /* struct tcpcb */
+
struct tcp_debug {
uint32_t td_time; /* network format */
short td_act;
diff -u rtems/cpukit/libnetworking/netinet/tcpip.h:1.2 rtems/cpukit/libnetworking/netinet/tcpip.h:1.3
--- rtems/cpukit/libnetworking/netinet/tcpip.h:1.2 Thu Feb 24 00:48:52 2011
+++ rtems/cpukit/libnetworking/netinet/tcpip.h Wed May 11 09:35:03 2011
@@ -37,6 +37,10 @@
#ifndef _NETINET_TCPIP_H_
#define _NETINET_TCPIP_H_
+#ifdef __BSD_VISIBLE
+#include <netinet/tcp.h> /* struct tcphdr */
+#include <netinet/ip_var.h> /* struct ipovly */
+
/*
* Tcp+ip header, after ip options removed.
*/
@@ -61,5 +65,6 @@
#define ti_win ti_t.th_win
#define ti_sum ti_t.th_sum
#define ti_urp ti_t.th_urp
+#endif /* __BSD_VISIBLE */
#endif
diff -u rtems/cpukit/libnetworking/netinet/udp_var.h:1.5 rtems/cpukit/libnetworking/netinet/udp_var.h:1.6
--- rtems/cpukit/libnetworking/netinet/udp_var.h:1.5 Sun Mar 25 11:50:37 2007
+++ rtems/cpukit/libnetworking/netinet/udp_var.h Wed May 11 09:35:03 2011
@@ -37,6 +37,9 @@
#ifndef _NETINET_UDP_VAR_H_
#define _NETINET_UDP_VAR_H_
+#include <netinet/ip_var.h> /* struct ipovly */
+#include <netinet/udp.h> /* struct udphdr */
+
/*
* UDP kernel structures and variables.
*/
*ralf*:
2011-05-11 Ralf Corsépius <ralf.corsepius at rtems.org>
* libnetworking/netinet/icmp_var.h, libnetworking/netinet/if_ether.h,
libnetworking/netinet/igmp.h, libnetworking/netinet/in_pcb.h,
libnetworking/netinet/in_var.h, libnetworking/netinet/ip.h,
libnetworking/netinet/ip_fw.h, libnetworking/netinet/ip_icmp.h,
libnetworking/netinet/ip_mroute.h, libnetworking/netinet/ip_var.h,
libnetworking/netinet/tcp.h, libnetworking/netinet/tcp_debug.h,
libnetworking/netinet/tcpip.h, libnetworking/netinet/udp_var.h:
Make self-contained.
M 1.2814 cpukit/ChangeLog
diff -u rtems/cpukit/ChangeLog:1.2813 rtems/cpukit/ChangeLog:1.2814
--- rtems/cpukit/ChangeLog:1.2813 Wed May 11 09:31:55 2011
+++ rtems/cpukit/ChangeLog Wed May 11 09:35:20 2011
@@ -1,5 +1,13 @@
2011-05-11 Ralf Corsépius <ralf.corsepius at rtems.org>
+ * libnetworking/netinet/icmp_var.h, libnetworking/netinet/if_ether.h,
+ libnetworking/netinet/igmp.h, libnetworking/netinet/in_pcb.h,
+ libnetworking/netinet/in_var.h, libnetworking/netinet/ip.h,
+ libnetworking/netinet/ip_fw.h, libnetworking/netinet/ip_icmp.h,
+ libnetworking/netinet/ip_mroute.h, libnetworking/netinet/ip_var.h,
+ libnetworking/netinet/tcp.h, libnetworking/netinet/tcp_debug.h,
+ libnetworking/netinet/tcpip.h, libnetworking/netinet/udp_var.h:
+ Make self-contained.
* libnetworking/net/bpf.h, libnetworking/net/if.h,
libnetworking/net/if_ppp.h, libnetworking/net/if_pppvar.h
libnetworking/net/if_var.h, libnetworking/net/raw_cb.h,
*ralf*:
Abandon suse-11.2.
More preps for fc16.
M 1.73 contrib/crossrpms/gcc/gccnewlib.add
diff -u rtems/contrib/crossrpms/gcc/gccnewlib.add:1.72 rtems/contrib/crossrpms/gcc/gccnewlib.add:1.73
--- rtems/contrib/crossrpms/gcc/gccnewlib.add:1.72 Wed Apr 27 03:16:21 2011
+++ rtems/contrib/crossrpms/gcc/gccnewlib.add Wed May 11 09:38:24 2011
@@ -80,12 +80,6 @@
%global gmp_provided 4.1.4
%endif
-%if 0%{?suse11_2}
-%global mpc_provided 0.7
-%global mpfr_provided 2.4.1
-%global gmp_provided 4.3.1
-%endif
-
%if 0%{?suse11_3}
%global mpc_provided 0.8.1
%global mpfr_provided 2.4.2
@@ -177,10 +171,10 @@
%{?fc13:BuildRequires: cloog-ppl-devel >= %cloog_required}
%{?fc14:BuildRequires: cloog-ppl-devel >= %cloog_required}
%{?fc15:BuildRequires: cloog-ppl-devel >= %cloog_required}
+%{?fc16:BuildRequires: cloog-ppl-devel >= %cloog_required}
%{?el6:BuildRequires: cloog-ppl-devel >= %cloog_required}
%{?suse11_4:BuildRequires: cloog-devel >= %cloog_required, ppl-devel}
%{?suse11_3:BuildRequires: cloog-devel >= %cloog_required, ppl-devel}
-%{?suse11_2:BuildRequires: cloog-devel >= %cloog_required, ppl-devel}
%endif
--
Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110511/32121b3a/attachment-0001.html>
More information about the vc
mailing list