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 43abee9f954cd26c59f8da03f3bb40a8e717213f (commit) via db29a147f8dcdb75d52c08ca7543c07b6cf6d2f6 (commit) from 482970c5ab94aa39981b016794510d9a445ea93b (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/43abee9f954cd26c59f8da03f3bb40a8e7172...
commit 43abee9f954cd26c59f8da03f3bb40a8e717213f Author: Cyril Hrubis metan@ucw.cz Date: Thu Jan 3 22:24:46 2013 +0100
backends: X11: Fix stub function.
This fixes build without libX11.
diff --git a/libs/backends/GP_X11.c b/libs/backends/GP_X11.c index 33a0666..696cc0e 100644 --- a/libs/backends/GP_X11.c +++ b/libs/backends/GP_X11.c @@ -858,7 +858,7 @@ err0:
void GP_BackendX11RequestFullscreen(GP_Backend *self, int mode) { - return request_fullscreen(self, mode); + request_fullscreen(self, mode); }
#else @@ -875,7 +875,10 @@ GP_Backend *GP_BackendX11Init(const char *GP_UNUSED(display), return NULL; }
-void GP_BackendX11RequestFullscreen(GP_Backend *GP_UNUSED(self), int mode); +void GP_BackendX11RequestFullscreen(GP_Backend *GP_UNUSED(self), + int GP_UNUSED(mode)) +{ +}
#endif /* HAVE_LIBX11 */
http://repo.or.cz/w/gfxprim.git/commit/db29a147f8dcdb75d52c08ca7543c07b6cf6d...
commit db29a147f8dcdb75d52c08ca7543c07b6cf6d2f6 Author: Cyril Hrubis metan@ucw.cz Date: Thu Jan 3 22:23:47 2013 +0100
build: Fix another bug introduced by yesterday.
I've confused $? for $^ sorry.
diff --git a/build/Makefile b/build/Makefile index 38ce4ca..d384f4c 100644 --- a/build/Makefile +++ b/build/Makefile @@ -23,18 +23,18 @@ endif
$(STATIC_LIB): $(LIB_OBJECTS) ifdef VERBOSE - $(AR) rcs $@ $(LIB_OBJECTS) + $(AR) rcs $@ $^ else @echo "AR $@" - @$(AR) rcs $@ $(LIB_OBJECTS) + @$(AR) rcs $@ $^ endif
$(DYNAMIC_LIB): $(LIB_OBJECTS) ifdef VERBOSE - $(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$(SONAME) $(LIB_OBJECTS) -o $@ + $(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$(SONAME) $^ -o $@ else @echo "LD $@" - @$(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$(SONAME) $(LIB_OBJECTS) -o $@ + @$(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$(SONAME) $^ -o $@ endif
$(SYMLINKS): $(DYNAMIC_LIB) diff --git a/lib.mk b/lib.mk index 62bf1b5..2aa9b00 100644 --- a/lib.mk +++ b/lib.mk @@ -36,19 +36,19 @@ OBJS=$(CSOURCES:.c=.o) $(BUILD_DIR)$(DYNAMIC_LIB): $(OBJS) ifdef VERBOSE rm -f $@ - $(CC) -fPIC --shared -Wl,-soname -Wl,$(SONAME) $? -o $@ + $(CC) -fPIC --shared -Wl,-soname -Wl,$(SONAME) $^ -o $@ else @rm -f $(@) @echo "LD $@" - @$(CC) -fPIC --shared -Wl,-soname -Wl,$(SONAME) $? -o $@ + @$(CC) -fPIC --shared -Wl,-soname -Wl,$(SONAME) $^ -o $@ endif
$(BUILD_DIR)$(STATIC_LIB): $(OBJS) ifdef VERBOSE - $(AR) rcs $@ $? + $(AR) rcs $@ $^ else @echo "AR $@" - @$(AR) rcs $@ $? + @$(AR) rcs $@ $^ endif
$(SYMLINKS): $(BUILD_DIR)$(DYNAMIC_LIB)
-----------------------------------------------------------------------
Summary of changes: build/Makefile | 8 ++++---- lib.mk | 8 ++++---- libs/backends/GP_X11.c | 7 +++++-- 3 files changed, 13 insertions(+), 10 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.