summaryrefslogtreecommitdiff
path: root/media-libs/libopenshot/files/libopenshot-0.1.6-fix-tests.patch
diff options
context:
space:
mode:
authorMarcin Deranek <gringo@slonko.net>2017-09-03 20:40:38 +0200
committerMarcin Deranek <gringo@slonko.net>2017-09-03 20:40:50 +0200
commita9257d82777b3858ab33ac0cfe54e900e87b09dd (patch)
treecbd003c44fbb2bc8141d9834df2377e24c72cd49 /media-libs/libopenshot/files/libopenshot-0.1.6-fix-tests.patch
parente140ad820e9cbde252ea1bf8365dd7743eca4cff (diff)
downloadportage-a9257d82777b3858ab33ac0cfe54e900e87b09dd.tar.gz
portage-a9257d82777b3858ab33ac0cfe54e900e87b09dd.tar.bz2
portage-a9257d82777b3858ab33ac0cfe54e900e87b09dd.zip
Newer already in portage
Diffstat (limited to 'media-libs/libopenshot/files/libopenshot-0.1.6-fix-tests.patch')
-rw-r--r--media-libs/libopenshot/files/libopenshot-0.1.6-fix-tests.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/media-libs/libopenshot/files/libopenshot-0.1.6-fix-tests.patch b/media-libs/libopenshot/files/libopenshot-0.1.6-fix-tests.patch
deleted file mode 100644
index 8ed3102..0000000
--- a/media-libs/libopenshot/files/libopenshot-0.1.6-fix-tests.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
-index 29fbe45..ff67cb5 100644
---- a/tests/CMakeLists.txt
-+++ b/tests/CMakeLists.txt
-@@ -24,16 +24,19 @@
- # along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
- ################################################################################
-
-+SET(TEST_MEDIA_PATH "${openshot_SOURCE_DIR}/src/examples/")
-
- ################ WINDOWS ##################
- # Set some compiler options for Windows
- # required for libopenshot-audio headers
- IF (WIN32)
-- STRING(REPLACE "/" "\\\\" TEST_MEDIA_PATH "${openshot_SOURCE_DIR}/src/examples/")
-- add_definitions( -DIGNORE_JUCE_HYPOT=1 -DTEST_MEDIA_PATH="${TEST_MEDIA_PATH}" )
-+ STRING(REPLACE "/" "\\\\" TEST_MEDIA_PATH TEST_MEDIA_PATH)
-+ add_definitions( -DIGNORE_JUCE_HYPOT=1 )
- SET(CMAKE_CXX_FLAGS " ${CMAKE_CXX_FLAGS} -include cmath -std=c++0x")
- ENDIF(WIN32)
-
-+add_definitions( -DTEST_MEDIA_PATH="${TEST_MEDIA_PATH}" )
-+
- ################### UNITTEST++ #####################
- # Find UnitTest++ libraries (used for unit testing)
- FIND_PACKAGE(UnitTest++ REQUIRED)