Projects
Multimedia
gmerlin
Sign Up
Log In
Username
Password
We truncated the diff of some files because they were too big. If you want to see the full diff for every file,
click here
.
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 52
View file
gmerlin.changes
Changed
@@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Tue Jun 11 12:53:16 UTC 2024 - Bernhard M. Wiedemann <packmanbmw@lsmod.de> + +- Add fixcompile.patch + +------------------------------------------------------------------- Wed Feb 25 08:15:40 UTC 2015 - avvissu@yandex.ru - Update to svn4256
View file
gmerlin.spec
Changed
@@ -34,6 +34,7 @@ Patch1: gmerlin-4256-write_frame_jack.patch Patch2: gmerlin-1.2.0-cdio.patch Patch3: gmerlin.patch +Patch4: fixcompile.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: doxygen
View file
fixcompile.patch
Added
@@ -0,0 +1,1128 @@ +Fix compilation by including required stdlib.h +for "free", "malloc", "atoi" etc + +Index: gmerlin/plugins/visualization/vis_scope.c +=================================================================== +--- gmerlin.orig/plugins/visualization/vis_scope.c ++++ gmerlin/plugins/visualization/vis_scope.c +@@ -21,6 +21,7 @@ + + #include <string.h> + #include <math.h> ++#include <stdlib.h> + + #include <config.h> + #include <gmerlin/translation.h> +Index: gmerlin/apps/gavftools/decode_album.c +=================================================================== +--- gmerlin.orig/apps/gavftools/decode_album.c ++++ gmerlin/apps/gavftools/decode_album.c +@@ -21,6 +21,7 @@ + + #include "gavf-decode.h" + #include <string.h> ++#include <stdlib.h> + + /* Stat */ + +Index: gmerlin/apps/gavftools/gavftools.c +=================================================================== +--- gmerlin.orig/apps/gavftools/gavftools.c ++++ gmerlin/apps/gavftools/gavftools.c +@@ -22,6 +22,7 @@ + #include <pthread.h> + #include <signal.h> + #include <string.h> ++#include <stdlib.h> + + #include "gavftools.h" + +Index: gmerlin/apps/gavftools/gavftools.h +=================================================================== +--- gmerlin.orig/apps/gavftools/gavftools.h ++++ gmerlin/apps/gavftools/gavftools.h +@@ -20,6 +20,7 @@ + * *****************************************************************/ + + #include <config.h> ++#include <stdlib.h> + #include <gmerlin/pluginregistry.h> + #include <gmerlin/utils.h> + #include <gmerlin/cmdline.h> +Index: gmerlin/apps/mediaserver/server.h +=================================================================== +--- gmerlin.orig/apps/mediaserver/server.h ++++ gmerlin/apps/mediaserver/server.h +@@ -20,6 +20,7 @@ + * *****************************************************************/ + + #include <config.h> ++#include <stdlib.h> + #include <gmerlin/utils.h> + #include <gmerlin/log.h> + #include <gmerlin/translation.h> +Index: gmerlin/apps/kbd/keys_xml.c +=================================================================== +--- gmerlin.orig/apps/kbd/keys_xml.c ++++ gmerlin/apps/kbd/keys_xml.c +@@ -21,6 +21,7 @@ + + #include <inttypes.h> + #include <string.h> ++#include <stdlib.h> + + #include <libxml/tree.h> + #include <libxml/parser.h> +Index: gmerlin/lib/x11/overlay.c +=================================================================== +--- gmerlin.orig/lib/x11/overlay.c ++++ gmerlin/lib/x11/overlay.c +@@ -20,6 +20,7 @@ + * *****************************************************************/ + + #include <string.h> ++#include <stdlib.h> + #include <x11/x11.h> + #include <x11/x11_window_private.h> + +Index: gmerlin/lib/x11/screensaver.c +=================================================================== +--- gmerlin.orig/lib/x11/screensaver.c ++++ gmerlin/lib/x11/screensaver.c +@@ -20,6 +20,7 @@ + * *****************************************************************/ + + ++#include <stdlib.h> + #include <string.h> + + #include <x11/x11.h> +Index: gmerlin/lib/x11/ximage.c +=================================================================== +--- gmerlin.orig/lib/x11/ximage.c ++++ gmerlin/lib/x11/ximage.c +@@ -19,6 +19,7 @@ + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * *****************************************************************/ + ++#include <stdlib.h> + #include <x11/x11.h> + #include <x11/x11_window_private.h> + +Index: gmerlin/lib/upnp/servicedesc_xml.c +=================================================================== +--- gmerlin.orig/lib/upnp/servicedesc_xml.c ++++ gmerlin/lib/upnp/servicedesc_xml.c +@@ -19,6 +19,7 @@ + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * *****************************************************************/ + ++#include <stdlib.h> + #include <upnp/servicepriv.h> + #include <gmerlin/utils.h> + +Index: gmerlin/lib/x11/glvideo.c +=================================================================== +--- gmerlin.orig/lib/x11/glvideo.c ++++ gmerlin/lib/x11/glvideo.c +@@ -19,6 +19,7 @@ + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * *****************************************************************/ + ++#include <stdlib.h> + #include <string.h> + + #include <x11/x11.h> +Index: gmerlin/lib/x11/icon.c +=================================================================== +--- gmerlin.orig/lib/x11/icon.c ++++ gmerlin/lib/x11/icon.c +@@ -19,6 +19,7 @@ + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * *****************************************************************/ + ++#include <stdlib.h> + #include <x11/x11.h> + #include <x11/x11_window_private.h> + +Index: gmerlin/lib/x11/x11_video.c +=================================================================== +--- gmerlin.orig/lib/x11/x11_video.c ++++ gmerlin/lib/x11/x11_video.c +@@ -19,6 +19,7 @@ + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * *****************************************************************/ + ++#include <stdlib.h> + #include <string.h> + #include <x11/x11.h> + #include <x11/x11_window_private.h> +Index: gmerlin/lib/x11/xvideo.c +=================================================================== +--- gmerlin.orig/lib/x11/xvideo.c ++++ gmerlin/lib/x11/xvideo.c +@@ -23,6 +23,7 @@ + #include <x11/x11_window_private.h> + + #include <X11/extensions/Xvlib.h> ++#include <stdlib.h> + #include <string.h> + + #include <gmerlin/log.h> +Index: gmerlin/apps/kbd/kbd_daemon.c +=================================================================== +--- gmerlin.orig/apps/kbd/kbd_daemon.c ++++ gmerlin/apps/kbd/kbd_daemon.c +@@ -20,6 +20,7 @@ + * *****************************************************************/ + + /* System includes */ ++#include <stdlib.h> + #include <sys/types.h> + #include <unistd.h> + #include <sys/stat.h> +Index: gmerlin/lib/bgfrei0r.c +=================================================================== +--- gmerlin.orig/lib/bgfrei0r.c ++++ gmerlin/lib/bgfrei0r.c +@@ -23,6 +23,7 @@ + * See http://www.piksel.org/frei0r + */ + ++#include <stdlib.h> + #include <config.h> + + #include <dlfcn.h> +Index: gmerlin/lib/bgladspa.c +=================================================================== +--- gmerlin.orig/lib/bgladspa.c ++++ gmerlin/lib/bgladspa.c
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.