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 65cea9aefed176553293e6d5b18ad5eb24b9b704 (commit) via 9405c62813a1cc0ce1584a512ca07384899244b2 (commit) via e9931e042beccee51ddb1855ba2cecc22dc8d0ea (commit) from 36422459f0fc8293fb52d4818dc94c8342615a1c (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/65cea9aefed176553293e6d5b18ad5eb24b9b...
commit 65cea9aefed176553293e6d5b18ad5eb24b9b704 Author: Cyril Hrubis metan@ucw.cz Date: Wed Dec 26 16:02:33 2012 +0100
build: pywrap: Fix the dependencies.
Make can't create rule that produces two or more files so we use small trick with with dummy rule to fix this.
diff --git a/pywrap.mk b/pywrap.mk index d8b18f6..2b527b8 100644 --- a/pywrap.mk +++ b/pywrap.mk @@ -13,7 +13,11 @@ INCLUDES+=$(addprefix -I$(TOPDIR)/include/, $(INCLUDE))
ALL+=$(SWIG_LIB) $(SWIG_PY)
-$(SWIG_C) $(SWIG_PY): $(SWIG_SRC) +# Empty rule to satisfy SWIG_PY +$(SWIG_PY): $(SWIG_C) + @ + +$(SWIG_C): $(SWIG_SRC) ifdef VERBOSE $(SWIG) $(SWIGOPTS) -python $(INCLUDES) $< else # VERBOSE
http://repo.or.cz/w/gfxprim.git/commit/9405c62813a1cc0ce1584a512ca0738489924...
commit 9405c62813a1cc0ce1584a512ca07384899244b2 Author: Cyril Hrubis metan@ucw.cz Date: Wed Dec 26 15:55:35 2012 +0100
build: Fix dependencies for library build.
Now the library is rebuild only once after the sources has been changed.
diff --git a/build/Makefile b/build/Makefile index 7ac79b2..59afb71 100644 --- a/build/Makefile +++ b/build/Makefile @@ -1,7 +1,10 @@ LIB_OBJECTS=$(shell ./get_objs.sh)
all: libGP.a libGP.so libGP.so.0 -.PHONY: libGP.a libGP.so libGP.so.0 + +libGP.a: $(LIB_OBJECTS) +libGP.so: $(LIB_OBJECTS) +libGP.so.0: $(LIB_OBJECTS)
rebuild: all
http://repo.or.cz/w/gfxprim.git/commit/e9931e042beccee51ddb1855ba2cecc22dc8d...
commit e9931e042beccee51ddb1855ba2cecc22dc8d0ea Author: Cyril Hrubis metan@ucw.cz Date: Wed Dec 26 15:52:20 2012 +0100
Remove long obsolete TODO file.
diff --git a/TODO b/TODO deleted file mode 100644 index 04e7bdc..0000000 --- a/TODO +++ /dev/null @@ -1,15 +0,0 @@ -What's not implemented (and should be) --------------------------------------- - -* Meditate about bit endians and why these aren't separate pixel types - (which would make our lives a bit easier) - -Advanced features ------------------ - -* bitmaps - - alpha channel - -* gfx primitives - - drawing with alpha channel - - anti aliasing
-----------------------------------------------------------------------
Summary of changes: TODO | 15 --------------- build/Makefile | 5 ++++- pywrap.mk | 6 +++++- 3 files changed, 9 insertions(+), 17 deletions(-) delete mode 100644 TODO
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.