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 9d50a7192a8d4620a221c571092015891182f63a (commit)
from 57eae77c4371c555ba66b24e739bd2aab83732a9 (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/9d50a7192a8d4620a221c571092015891182…
commit 9d50a7192a8d4620a221c571092015891182f63a
Author: Cyril Hrubis <metan(a)ucw.cz>
Date: Sat May 28 18:50:06 2011 +0200
build: Fix library soname.
diff --git a/lib.mk b/lib.mk
index 52793ca..397515a 100644
--- a/lib.mk
+++ b/lib.mk
@@ -28,13 +28,13 @@ all: $(OBJECTS)
$(LIBP)$(LIB).so: $(OBJECTS)
ifdef VERBOSE
rm -f $(LIBP)$(LIB).so.0
- ln -s $(LIB).so $(LIBP)$(LIB).so.0
- $(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$@.0 $(OBJECTS) -o $@
+ cd $(LIBP) && ln -s $(LIB).so $(LIB).so.0
+ $(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$(LIB).so.0 $(OBJECTS) -o $@
else
@rm -f $(LIBP)$(LIB).so.0
- @ln -s $(LIB).so $(LIBP)$(LIB).so.0
+ @cd $(LIBP) && ln -s $(LIB).so $(LIB).so.0
@echo "LD $@"
- @$(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$@.0 $(OBJECTS) -o $@
+ @$(CC) -fPIC -dPIC --shared -Wl,-soname -Wl,$(LIB).so.0 $(OBJECTS) -o $@
endif
$(LIBP)$(LIB).a: $(OBJECTS)
-----------------------------------------------------------------------
Summary of changes:
lib.mk | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos(a)gmail.com
if you want to unsubscribe, or site admin admin(a)repo.or.cz if you receive
no reply.
--
gfxprim.git ("A simple 2D graphics library with emphasis on correctness and well-defined operation.")
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 57eae77c4371c555ba66b24e739bd2aab83732a9 (commit)
from a31120b664ac415df88655407937f2e9c0fea489 (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/57eae77c4371c555ba66b24e739bd2aab837…
commit 57eae77c4371c555ba66b24e739bd2aab83732a9
Author: Cyril Hrubis <metan(a)ucw.cz>
Date: Sat May 28 18:20:27 2011 +0200
build: The link creation must be spinlocked too.
diff --git a/build/Makefile b/build/Makefile
index 6f01215..5c24ac7 100644
--- a/build/Makefile
+++ b/build/Makefile
@@ -31,9 +31,13 @@ endif
@. ./liblock.sh; spinunlock .
libGP.so.0: libGP.so
+ @. ./liblock.sh; spinlock .
ifdef VERBOSE
+ rm -f libGP.so.0
ln -s libGP.so libGP.so.0
else
@echo "LN libGP.so.0"
+ @rm -f libGP.so.0
@ln -s libGP.so libGP.so.0
endif
+ @. ./liblock.sh; spinunlock .
-----------------------------------------------------------------------
Summary of changes:
build/Makefile | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos(a)gmail.com
if you want to unsubscribe, or site admin admin(a)repo.or.cz if you receive
no reply.
--
gfxprim.git ("A simple 2D graphics library with emphasis on correctness and well-defined operation.")
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 3eca4f4778eee54992fcd133978419cefd9135b0 (commit)
via 34f8b640d9ce81505a024b745b03a9d179eb9b27 (commit)
from ecb50dd5415f6b8079e3dda4e2cd0a4f9d8043d3 (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/3eca4f4778eee54992fcd133978419cefd91…
commit 3eca4f4778eee54992fcd133978419cefd9135b0
Author: Cyril Hrubis <metan(a)ucw.cz>
Date: Sat May 28 17:52:21 2011 +0200
build: Fixed the link library for tests.
diff --git a/tests/sdl/Makefile b/tests/sdl/Makefile
index 2795a44..11f0055 100644
--- a/tests/sdl/Makefile
+++ b/tests/sdl/Makefile
@@ -3,7 +3,7 @@ TOPDIR=../..
CSOURCES=$(shell echo *.c)
INCLUDE=core gfx sdl backends
-LDLIBS+=-lGP -L$(TOPDIR)/build/ -lGP_SDL -lSDL
+LDLIBS+=-lGP -L$(TOPDIR)/build/ -lGP_sdl -lSDL
APPS=pixeltest fileview fonttest linetest randomshapetest shapetest sierpinsky symbolstest textaligntest trianglefps
http://repo.or.cz/w/gfxprim.git/commit/34f8b640d9ce81505a024b745b03a9d179eb…
commit 34f8b640d9ce81505a024b745b03a9d179eb9b27
Author: Cyril Hrubis <metan(a)ucw.cz>
Date: Sat May 28 17:50:56 2011 +0200
build: Fixed the 'make install'.
diff --git a/Makefile b/Makefile
index 972796b..5630ef8 100644
--- a/Makefile
+++ b/Makefile
@@ -28,9 +28,9 @@ LIB_LOC=/usr/lib/
install:
ifdef VERBOSE
- ./install.sh "/tmp/"
+ ./install.sh ""
else
- @./install.sh "/tmp/"
+ @./install.sh ""
endif
tar:
diff --git a/install.sh b/install.sh
index 50dbd4d..ee5403f 100755
--- a/install.sh
+++ b/install.sh
@@ -7,7 +7,7 @@ LIB_LOC="$INSTALL_PREFIX/usr/lib/"
# Headers
echo "INSTALL headers"
-install -m 775 -d "$HEADER_LOC"
+install -m 775 -d "${HEADER_LOC}GP"
for i in `ls include/`; do
if [ -d "include/$i" ]; then
echo " $i"
-----------------------------------------------------------------------
Summary of changes:
Makefile | 4 ++--
install.sh | 2 +-
tests/sdl/Makefile | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos(a)gmail.com
if you want to unsubscribe, or site admin admin(a)repo.or.cz if you receive
no reply.
--
gfxprim.git ("A simple 2D graphics library with emphasis on correctness and well-defined operation.")
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, generate has been updated
via c8a27730e311669696166d376863941b73e5e552 (commit)
from 588c0e7afe142449c09802fbe59fcd4a2fed3d42 (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/c8a27730e311669696166d376863941b73e5…
commit c8a27730e311669696166d376863941b73e5e552
Author: Cyril Hrubis <metan(a)ucw.cz>
Date: Sat May 28 15:07:31 2011 +0200
Fix the clean target redefinition.
* The clean is moved into pylib so
it's done exactly once
* The *.py is escaped in the find
(otherwise it doesn't work in directory
that contains any file with .py suffix)
diff --git a/Makefile b/Makefile
index 35b28d4..2c103a7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
TOPDIR=.
-SUBDIRS=libs tests
+SUBDIRS=libs tests pylib
include include.mk
#
diff --git a/include.mk b/include.mk
index 6505a3d..2a103a9 100644
--- a/include.mk
+++ b/include.mk
@@ -33,10 +33,8 @@ endif
#
# Potential python dependencies for generated files and scripts
-# Add .pyc files to CLEAN list
#
-PYTHON_FILES=$(shell find "${PYLIBSDIR}" -name *.py)
-CLEAN+=$(patsubst %.py, %.pyc, ${PYTHON_FILES})
+PYTHON_FILES=$(shell find "${PYLIBSDIR}" -name '*.py')
#
# 1. Generate and include dependencies for all C sources
diff --git a/pylib/Makefile b/pylib/Makefile
new file mode 100644
index 0000000..af75868
--- /dev/null
+++ b/pylib/Makefile
@@ -0,0 +1,14 @@
+TOPDIR=..
+
+#
+# Add .pyc files to CLEAN list
+#
+CLEAN+=$(patsubst %.py, %.pyc, ${PYTHON_FILES})
+
+include $(TOPDIR)/include.mk
+
+all:
+ ls $(PYLIBSDIR)
+ echo $(PYTHON_FILES)
+ echo $(CLEAN)
+ @true
-----------------------------------------------------------------------
Summary of changes:
Makefile | 2 +-
include.mk | 4 +---
pylib/Makefile | 14 ++++++++++++++
3 files changed, 16 insertions(+), 4 deletions(-)
create mode 100644 pylib/Makefile
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos(a)gmail.com
if you want to unsubscribe, or site admin admin(a)repo.or.cz if you receive
no reply.
--
gfxprim.git ("A simple 2D graphics library with emphasis on correctness and well-defined operation.")
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, generate has been updated
via 588c0e7afe142449c09802fbe59fcd4a2fed3d42 (commit)
via ad7a06bf6cfd11f3038f32e018c6e6c69912c50c (commit)
from 47ceeb4450654c49fb304c7e79da62c50eb83304 (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/588c0e7afe142449c09802fbe59fcd4a2fed…
commit 588c0e7afe142449c09802fbe59fcd4a2fed3d42
Author: Cyril Hrubis <metan(a)ucw.cz>
Date: Fri May 27 02:58:36 2011 +0200
Fix header generator dependencies.
diff --git a/gen.mk b/gen.mk
index f15aae6..ba375c0 100644
--- a/gen.mk
+++ b/gen.mk
@@ -21,6 +21,8 @@ CSOURCES+=$(GENSOURCES)
#
all: $(RGENHEADERS)
+$(CSOURCES): $(RGENHEADERS)
+
#
# And clean them
#
http://repo.or.cz/w/gfxprim.git/commit/ad7a06bf6cfd11f3038f32e018c6e6c69912…
commit ad7a06bf6cfd11f3038f32e018c6e6c69912c50c
Author: Cyril Hrubis <metan(a)ucw.cz>
Date: Fri May 27 02:57:44 2011 +0200
Fix bad merge.
diff --git a/include/gfx/GP_Gfx.h b/include/gfx/GP_Gfx.h
index 149f26e..19bad4e 100644
--- a/include/gfx/GP_Gfx.h
+++ b/include/gfx/GP_Gfx.h
@@ -55,13 +55,3 @@
#include "GP_Symbol.h"
#endif /* GP_GFX_H */
-
-/* backends */
-#include "GP_Backend.h"
-
-#define typeof __typeof__
-
-#endif /* GP_H */
-=======
-#endif /* GP_GFX_H */
->>>>>>> master:include/gfx/GP_Gfx.h
-----------------------------------------------------------------------
Summary of changes:
gen.mk | 2 ++
include/gfx/GP_Gfx.h | 10 ----------
2 files changed, 2 insertions(+), 10 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos(a)gmail.com
if you want to unsubscribe, or site admin admin(a)repo.or.cz if you receive
no reply.
--
gfxprim.git ("A simple 2D graphics library with emphasis on correctness and well-defined operation.")