This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, master has been updated via 22301c3c370f269b10b84582ee524b46abf70019 (commit) from ec5c8093c73872736480da4c97cbce5245fd6dc5 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/22301c3c370f269b10b84582ee524b46abf70...
commit 22301c3c370f269b10b84582ee524b46abf70019 Author: Cyril Hrubis metan@ucw.cz Date: Wed Nov 21 23:29:15 2012 +0100
loaders: Provide GP_MatchXXX ENOSYS stubs.
diff --git a/libs/loaders/GP_GIF.c b/libs/loaders/GP_GIF.c index c4e2d2e..8eba747 100644 --- a/libs/loaders/GP_GIF.c +++ b/libs/loaders/GP_GIF.c @@ -358,6 +358,12 @@ GP_Context *GP_LoadGIF(const char *src_path, GP_ProgressCallback *callback)
#else
+int GP_MatchGIF(const void GP_UNUSED(*buf)) +{ + errno = ENOSYS; + return -1; +} + int GP_OpenGIF(const char GP_UNUSED(*src_path), void GP_UNUSED(**f)) { diff --git a/libs/loaders/GP_JPG.c b/libs/loaders/GP_JPG.c index bc47c4b..0e04ce6 100644 --- a/libs/loaders/GP_JPG.c +++ b/libs/loaders/GP_JPG.c @@ -407,6 +407,12 @@ err0:
#else
+int GP_MatchJPG(const void GP_UNUSED(*buf)) +{ + errno = ENOSYS; + return -1; +} + int GP_OpenJPG(const char GP_UNUSED(*src_path), FILE GP_UNUSED(**f)) { errno = ENOSYS; diff --git a/libs/loaders/GP_PNG.c b/libs/loaders/GP_PNG.c index 275d4be..87d9eca 100644 --- a/libs/loaders/GP_PNG.c +++ b/libs/loaders/GP_PNG.c @@ -551,6 +551,12 @@ err0:
#else
+int GP_MatchPNG(const void GP_UNUSED(*buf)) +{ + errno = ENOSYS; + return -1; +} + int GP_OpenPNG(const char GP_UNUSED(*src_path), FILE GP_UNUSED(**f)) {
-----------------------------------------------------------------------
Summary of changes: libs/loaders/GP_GIF.c | 6 ++++++ libs/loaders/GP_JPG.c | 6 ++++++ libs/loaders/GP_PNG.c | 6 ++++++ 3 files changed, 18 insertions(+), 0 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.