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 wmaker-crm.git.

The branch, next has been updated
       via  2dc97e4f153f3ebd7de598987a5e82eaef37d3b7 (commit)
       via  141b046c33982e09c3bbf3b00800a743a90c1597 (commit)
       via  49922831e8bb5e846100b4dd4f47015f7e2a8518 (commit)
      from  f846b7cdd39749b5291d4559185a229b752b4fed (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/wmaker-crm.git/commit/2dc97e4f153f3ebd7de598987a5e82eaef37d3b7

commit 2dc97e4f153f3ebd7de598987a5e82eaef37d3b7
Author: Carlos R. Mafra <crma...@gmail.com>
Date:   Mon Nov 12 22:50:23 2012 +0000

    WPrefs: Remove pointless 'this is annoying' warning
    
    Is it annoying to whom?

diff --git a/WPrefs.app/MenuPreferences.c b/WPrefs.app/MenuPreferences.c
index b56e8e2..c93ee30 100644
--- a/WPrefs.app/MenuPreferences.c
+++ b/WPrefs.app/MenuPreferences.c
@@ -194,9 +194,7 @@ static void createPanel(Panel * p)
        panel->wrapB = WMCreateSwitchButton(panel->optF);
        WMResizeWidget(panel->wrapB, 440, 32);
        WMMoveWidget(panel->wrapB, 25, 8);
-       WMSetButtonText(panel->wrapB,
-                       _
-                       ("Always open submenus inside the screen, instead of 
scrolling.nNote: this is annoying."));
+       WMSetButtonText(panel->wrapB, _("Always open submenus inside the 
screen, instead of scrolling."));
 
        panel->autoB = WMCreateSwitchButton(panel->optF);
        WMResizeWidget(panel->autoB, 440, 32);

http://repo.or.cz/w/wmaker-crm.git/commit/141b046c33982e09c3bbf3b00800a743a90c1597

commit 141b046c33982e09c3bbf3b00800a743a90c1597
Author: Carlos R. Mafra <crma...@gmail.com>
Date:   Mon Nov 12 22:44:03 2012 +0000

    Remove last QUIET hack from Makefiles
    
    They somehow were missed in 5c8eb580b34cc ("configure:
    Remove --disable-verbose-compile hack")

diff --git a/WINGs/Examples/Makefile.am b/WINGs/Examples/Makefile.am
index 42519cb..877f233 100644
--- a/WINGs/Examples/Makefile.am
+++ b/WINGs/Examples/Makefile.am
@@ -27,14 +27,3 @@ server_LDADD = $(top_builddir)/WINGs/libWUtil.la 
@LIBRARY_SEARCH_PATH@ @INTLIBS@
 
 INCLUDES = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src     
-DRESOURCE_PATH="$(datadir)/WINGs" @HEADER_SEARCH_PATH@ -DDEBUG
-
-LIBTOOL = $(QUIET) $(SHELL) $(top_builddir)/libtool $(LIBTOOL_ARG)
-
-.c.o:
-       $(QUIET)$(COMPILE) -c $<
-
-.c.obj:
-       $(QUIET)$(COMPILE) -c `$(CYGPATH_W) '$<'`
-
-.c.lo:
-       $(QUIET)$(LTCOMPILE) -c -o $@ $<
diff --git a/test/Makefile.am b/test/Makefile.am
index be4f5d5..2f80174 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -10,16 +10,4 @@ wtest_SOURCES = wtest.c
 
 wtest_LDADD = $(top_builddir)/wmlib/libWMaker.la @XLFLAGS@ @XLIBS@
 
-
-INCLUDES = -g -D_BSD_SOURCE @XCFLAGS@ -I$(top_srcdir)/wmlib 
-
-LIBTOOL = $(QUIET) $(SHELL) $(top_builddir)/libtool $(LIBTOOL_ARG)
-
-.c.o:
-       $(QUIET)$(COMPILE) -c $<
-
-.c.obj:
-       $(QUIET)$(COMPILE) -c `$(CYGPATH_W) '$<'`
-
-.c.lo:
-       $(QUIET)$(LTCOMPILE) -c -o $@ $<
+INCLUDES = -g -D_BSD_SOURCE @XCFLAGS@ -I$(top_srcdir)/wmlib
diff --git a/wmlib/Makefile.am b/wmlib/Makefile.am
index 0f8201f..4d7c521 100644
--- a/wmlib/Makefile.am
+++ b/wmlib/Makefile.am
@@ -8,8 +8,6 @@ include_HEADERS = WMaker.h
 
 INCLUDES = $(DFLAGS) @XCFLAGS@
 
-libWMaker_a_AR = $(QUIET_AR) $(AR) $(ARFLAGS)
-
 libWMaker_la_SOURCES =                 menu.c                  app.c           
http://repo.or.cz/w/wmaker-crm.git/commit/49922831e8bb5e846100b4dd4f47015f7e2a8518

commit 49922831e8bb5e846100b4dd4f47015f7e2a8518
Author: BALATON Zoltan <bala...@eik.bme.hu>
Date:   Mon Nov 12 21:44:25 2012 +0100

    Fixed out of source dir build

diff --git a/test/Makefile.am b/test/Makefile.am
index b1fd47a..be4f5d5 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -13,7 +13,7 @@ wtest_LDADD = $(top_builddir)/wmlib/libWMaker.la @XLFLAGS@ 
@XLIBS@
 
 INCLUDES = -g -D_BSD_SOURCE @XCFLAGS@ -I$(top_srcdir)/wmlib 
 
-LIBTOOL = $(QUIET) $(SHELL) $(top_srcdir)/libtool $(LIBTOOL_ARG)
+LIBTOOL = $(QUIET) $(SHELL) $(top_builddir)/libtool $(LIBTOOL_ARG)
 
 .c.o:
        $(QUIET)$(COMPILE) -c $<

-----------------------------------------------------------------------

Summary of changes:
 WINGs/Examples/Makefile.am   |   11 -----------
 WPrefs.app/MenuPreferences.c |    4 +---
 test/Makefile.am             |   14 +-------------
 wmlib/Makefile.am            |    2 --
 4 files changed, 2 insertions(+), 29 deletions(-)


repo.or.cz automatic notification. Contact project admin crma...@gmail.com
if you want to unsubscribe, or site admin ad...@repo.or.cz if you receive
no reply.
-- 
wmaker-crm.git ("The Window Maker window manager")


-- 
To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.

Reply via email to