-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from Geontech/rocko-rodrigo455
Support for REDHAWK Pre-release 2.1.3
- Loading branch information
Showing
22 changed files
with
146 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
recipes-core-framework/bulkioInterfaces/files/remove_cppunit.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- git/configure.ac | ||
+++ git-patched/configure.ac | ||
@@ -131,7 +131,7 @@ # End optional java support | ||
|
||
# C++ unit testing support. May want to conditionally enable/disable this. | ||
-AM_PATH_CPPUNIT(1.12.1) | ||
+ifdef([AM_PATH_CPPUNIT], [AM_PATH_CPPUNIT([1.12.1])], []) | ||
AS_IF([test "x$HAVE_JAVASUPPORT" == "xyes"], [ | ||
dnl Use RPM location hard-coded for now | ||
AC_SUBST([JUNIT_CLASSPATH], "/usr/share/java/junit4.jar") | ||
]) |
13 changes: 0 additions & 13 deletions
13
recipes-core-framework/bulkioInterfaces/files/subdir_objects.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
recipes-core-framework/burstioInterfaces/files/IDLDIR.patch
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
recipes-core-framework/burstioInterfaces/files/burstioInterfaces_libs.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- git/src/cpp/Makefile.am | ||
+++ git-patched/src/cpp/Makefile.am | ||
@@ -58,7 +58,8 @@ | ||
libburstioInterfaces_la_CPPFLAGS = -I . $(OSSIE_CFLAGS) | ||
libburstioInterfaces_la_LDFLAGS = -lbulkioInterfaces | ||
+libburstioInterfaces_la_LIBADD = -L$(INTERFACES_LIBDIR) | ||
|
||
BUILT_SOURCES = $(nobase_nodist_include_HEADERS) $(nodist_libburstioInterfaces_la_SOURCES) | ||
CLEANFILES = $(BUILT_SOURCES) | ||
|
||
idl_srcdir = $(top_srcdir)/src/idl |
22 changes: 22 additions & 0 deletions
22
recipes-core-framework/burstioInterfaces/files/fix_idldir_and_remove_cppunit.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- git/configure.ac 2016-03-02 07:00:31.568548917 -0500 | ||
+++ git-patched/configure.ac 2016-03-02 07:06:48.800526356 -0500 | ||
@@ -48,6 +48,10 @@ | ||
PKG_CHECK_MODULES([BULKIO], [bulkio >= 2.1]) | ||
RH_PKG_IDLDIR([BULKIO], [bulkioInterfaces]) | ||
|
||
+# Adjust the variables from RH_PKG_IDLDIR for the staging area. | ||
+OSSIE_IDLDIR="${STAGING_BASE}${OSSIE_IDLDIR}" | ||
+BULKIO_IDLDIR="${STAGING_BASE}${BULKIO_IDLDIR}" | ||
+ | ||
AX_BOOST_BASE([1.41]) | ||
AX_BOOST_THREAD | ||
AX_BOOST_SYSTEM | ||
@@ -135,7 +139,7 @@ | ||
# Optionally disable unit tests | ||
AC_ARG_ENABLE([testing], AS_HELP_STRING([--disable-testing], [disable build of unit tests])) | ||
AS_IF([test "x$enable_testing" != "xno"], [ | ||
- AM_PATH_CPPUNIT(1.12.1) | ||
+ ifdef([AM_PATH_CPPUNIT], [AM_PATH_CPPUNIT([1.12.1])], []) | ||
AS_IF([test "x$HAVE_JAVASUPPORT" == "xyes"], [ | ||
dnl Use RPM location hard-coded for now | ||
AC_SUBST([JUNIT_CLASSPATH], "/usr/share/java/junit4.jar") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
recipes-core-framework/redhawk/files/include_scoped_ptr.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
diff -Nuar src/base/include/ossie/Resource_impl.h src-patched/base/include/ossie/Resource_impl.h | ||
--- src/base/include/ossie/Resource_impl.h 2016-03-01 09:51:46.915186392 -0600 | ||
+++ src-patched/base/include/ossie/Resource_impl.h 2016-03-01 10:19:26.815427832 -0600 | ||
@@ -24,7 +24,8 @@ | ||
|
||
#include <string> | ||
#include <map> | ||
+#include <boost/scoped_ptr.hpp> | ||
#include "Logging_impl.h" | ||
#include "Port_impl.h" | ||
#include "LifeCycle_impl.h" | ||
#include "PortSet_impl.h" | ||
diff -Nuar src/base/include/ossie/Component.h src-patched/base/include/ossie/Component.h | ||
--- src/base/include/ossie/Component.h 2016-03-01 09:51:46.915186392 -0600 | ||
+++ src-patched/base/include/ossie/Component.h 2016-03-01 10:14:48.420199987 -0600 | ||
@@ -20,7 +20,8 @@ | ||
|
||
#ifndef COMPONENT_H | ||
#define COMPONENT_H | ||
+#include <boost/scoped_ptr.hpp> | ||
#include "Resource_impl.h" | ||
#include "ossie/debug.h" | ||
#include "ossie/Events.h" | ||
#include "ossie/Autocomplete.h" | ||
diff -Nuar src/base/framework/shm/Allocator.cpp src-patched/base/framework/shm/Allocator.cpp | ||
--- src/base/framework/shm/Allocator.cpp 2016-03-01 09:51:46.915186392 -0600 | ||
+++ src-patched/base/framework/shm/Allocator.cpp 2016-03-01 10:14:48.420199987 -0600 | ||
@@ -26,6 +26,7 @@ | ||
#include <ossie/BufferManager.h> | ||
|
||
#include <boost/thread.hpp> | ||
+#include <boost/scoped_ptr.hpp> | ||
|
||
#include "Block.h" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.