diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/gizmod/files/3.4-build-fix.patch | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/gizmod/files/3.4-build-fix.patch')
-rw-r--r-- | packages/gizmod/files/3.4-build-fix.patch | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/packages/gizmod/files/3.4-build-fix.patch b/packages/gizmod/files/3.4-build-fix.patch deleted file mode 100644 index d0a11da62b..0000000000 --- a/packages/gizmod/files/3.4-build-fix.patch +++ /dev/null @@ -1,71 +0,0 @@ -Index: gizmod-3.4/cmake/Modules/DefineCompilerFlags.cmake -=================================================================== ---- gizmod-3.4.orig/cmake/Modules/DefineCompilerFlags.cmake -+++ gizmod-3.4/cmake/Modules/DefineCompilerFlags.cmake -@@ -15,4 +15,4 @@ if (UNIX AND NOT WIN32) - #endif (CMAKE_SIZEOF_VOID_P MATCHES "8") - endif (UNIX AND NOT WIN32) - --add_definitions(-DHAVE_CONFIG_H -Wall -Werror) -+add_definitions(-DHAVE_CONFIG_H) -Index: gizmod-3.4/libGizmod/Alsa.cpp -=================================================================== ---- gizmod-3.4.orig/libGizmod/Alsa.cpp -+++ gizmod-3.4/libGizmod/Alsa.cpp -@@ -149,10 +149,11 @@ void Alsa::onAlsaEventMixerElementAttach - **/ - void Alsa::onAlsaEventMixerElementChange(AlsaEvent const & Event, AlsaSoundCard const & SoundCard, AlsaMixer const & Mixer) { - // override me -- if (Event.Type == ALSAEVENT_MIXERELEMENT_CHANGE) -+ if (Event.Type == ALSAEVENT_MIXERELEMENT_CHANGE) { - cdbg2 << "Mixer Element Changed [" << Mixer.getName() << "] with Mask [" << stringconverter(Event.IsActiveChanged) << stringconverter(Event.ElementsChanged) << stringconverter(Event.VolumePlaybackChanged) << "] on Sound Card [" << SoundCard.getCardName() << "] " << Mixer.VolumePlaybackPercent << endl; -- else -+ } else { - cdbg2 << "Mixer Element Changed [" << Mixer.getName() << "] with Mask [" << stringconverter(Event.Mask) << "] on Sound Card [" << SoundCard.getCardName() << "]" << endl; -+ } - } - - /** -Index: gizmod-3.4/libGizmod/GizmoLinuxInputEvent.hpp -=================================================================== ---- gizmod-3.4.orig/libGizmod/GizmoLinuxInputEvent.hpp -+++ gizmod-3.4/libGizmod/GizmoLinuxInputEvent.hpp -@@ -54,7 +54,7 @@ namespace Gizmod { - * \struct GizmoTimeVal - * \brief Wrapper for the C timeval struct (for exposure to Python) - **/ --typedef struct GizmoTimeVal { -+struct GizmoTimeVal { - unsigned int Seconds; ///< Time in Seconds - unsigned int MicroSeconds; ///< Time remaining (after Seconds) in MicroSeconds - -Index: gizmod-3.4/libH/FileEventWatcher.cpp -=================================================================== ---- gizmod-3.4.orig/libH/FileEventWatcher.cpp -+++ gizmod-3.4/libH/FileEventWatcher.cpp -@@ -453,11 +453,12 @@ void FileEventWatcher::handleEventsOnFil - // read from the inotify device - char ReadBuffer[NOTIFY_READ_BUF_SIZE]; - int BytesRead = read(mInotifyFD, ReadBuffer, NOTIFY_READ_BUF_SIZE); -- if (BytesRead < 0) -+ if (BytesRead < 0) { - if (errno == EINTR) - return; - else - throw H::Exception("Failed to Read from Inotify Device!", __FILE__, __FUNCTION__, __LINE__); -+ } - - // loop through all of the returned inotify_event structures and produce events - int BytesHandled = 0; -Index: gizmod-3.4/libH/Util.hpp -=================================================================== ---- gizmod-3.4.orig/libH/Util.hpp -+++ gizmod-3.4/libH/Util.hpp -@@ -36,6 +36,7 @@ - #include "Debug.hpp" - #include <cstdlib> - #include <iostream> -+#include <algorithm> - - ////////////////////////////////////////////////////////////////////////////// - // Namespace |