This is an automated email from the git hooks/post-receive script. ecsv-guest pushed a commit to branch master in repository mupen64plus-video-glide64.
commit f4e24d915fcac8d14a674c187deea3fb676fb60b Author: Sven Eckelmann <[email protected]> Date: Wed Oct 10 16:38:45 2012 +0200 Imported Upstream version 1.99.5 --- .hg_archival.txt | 5 +++++ .hgignore | 4 ++++ .hgtags | 2 ++ projects/unix/Makefile | 6 ++++++ 4 files changed, 17 insertions(+) diff --git a/.hg_archival.txt b/.hg_archival.txt new file mode 100644 index 0000000..81b4a75 --- /dev/null +++ b/.hg_archival.txt @@ -0,0 +1,5 @@ +repo: 1ca5bfa2b616087c899c935020268b5163d95703 +node: bf60821fe8b25338176bdfd34ccd7f8553579c23 +branch: default +latesttag: 1.99.5 +latesttagdistance: 1 diff --git a/.hgignore b/.hgignore new file mode 100644 index 0000000..b879817 --- /dev/null +++ b/.hgignore @@ -0,0 +1,4 @@ +syntax: regexp + +^projects/unix/_obj/ +^projects/unix/mupen64plus-video-glide64.so$ diff --git a/.hgtags b/.hgtags new file mode 100644 index 0000000..7efd6de --- /dev/null +++ b/.hgtags @@ -0,0 +1,2 @@ +0c33ceb533bc62de11d468522798e887e7564118 1.99.4 +28a2ec2ca14c8fd2a9838c904a32ee996b66f8a0 1.99.5 diff --git a/projects/unix/Makefile b/projects/unix/Makefile index 80a3f52..3af81d5 100644 --- a/projects/unix/Makefile +++ b/projects/unix/Makefile @@ -311,6 +311,7 @@ targets: @echo " DESTDIR=path == path to prepend to all installation paths (only for packagers)" @echo " Debugging Options:" @echo " DEBUG=1 == add debugging symbols" + @echo " LTO=1 == enable experimental build with link-time optimization" @echo " V=1 == show verbose compiler output" all: $(TARGET) @@ -335,6 +336,11 @@ CFLAGS += -MD -include $(OBJECTS:.o=.d) CXXFLAGS += $(CFLAGS) +ifeq ($(LTO), 1) + CFLAGS += -flto + CXXFLAGS += -flto + LDFLAGS += -fuse-linker-plugin $(CXXFLAGS) +endif # standard build rules $(OBJDIR)/%.o: $(SRCDIR)/%.c -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/mupen64plus-video-glide64.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

