antiright-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Antiright-devel] antiright Makefile gtkshell/gtkshell.h gtkshell...


From: Jeffrey Bedard
Subject: [Antiright-devel] antiright Makefile gtkshell/gtkshell.h gtkshell...
Date: Fri, 20 Jul 2007 01:26:36 +0000

CVSROOT:        /sources/antiright
Module name:    antiright
Changes by:     Jeffrey Bedard <jefbed> 07/07/20 01:26:35

Modified files:
        .              : Makefile 
        gtkshell       : gtkshell.h main.c 
        libantiright   : library.h util.c 
        xshell         : arguments.c arguments.h decoration.c 
                         decoration.h events.c events.h layout.c 
                         layout.h shell.c shell.h text.c text.h 

Log message:
        Integrated xshell into build system.  Fixed boehm-gc include file 
resolution.
        Added license headers to xshell files.  Make xshell bail out if no
        arguments have been specified.  

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/antiright/Makefile?cvsroot=antiright&r1=1.19&r2=1.20
http://cvs.savannah.gnu.org/viewcvs/antiright/gtkshell/gtkshell.h?cvsroot=antiright&r1=1.53&r2=1.54
http://cvs.savannah.gnu.org/viewcvs/antiright/gtkshell/main.c?cvsroot=antiright&r1=1.27&r2=1.28
http://cvs.savannah.gnu.org/viewcvs/antiright/libantiright/library.h?cvsroot=antiright&r1=1.19&r2=1.20
http://cvs.savannah.gnu.org/viewcvs/antiright/libantiright/util.c?cvsroot=antiright&r1=1.18&r2=1.19
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/arguments.c?cvsroot=antiright&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/arguments.h?cvsroot=antiright&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/decoration.c?cvsroot=antiright&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/decoration.h?cvsroot=antiright&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/events.c?cvsroot=antiright&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/events.h?cvsroot=antiright&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/layout.c?cvsroot=antiright&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/layout.h?cvsroot=antiright&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/shell.c?cvsroot=antiright&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/shell.h?cvsroot=antiright&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/text.c?cvsroot=antiright&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/antiright/xshell/text.h?cvsroot=antiright&r1=1.1&r2=1.2

Patches:
Index: Makefile
===================================================================
RCS file: /sources/antiright/antiright/Makefile,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -b -r1.19 -r1.20
--- Makefile    11 Jun 2007 21:32:36 -0000      1.19
+++ Makefile    20 Jul 2007 01:26:34 -0000      1.20
@@ -31,6 +31,7 @@
        cd libantiright && $(MAKE)
        cd gtkshell && $(MAKE)
        cd ACE-desktop && $(MAKE)
+       cd xshell && $(MAKE)
 
 ctags:
        ctags -w */*.[ch] ACE-desktop/ACE
@@ -39,6 +40,7 @@
        cd libantiright && $(MAKE) clean
        cd gtkshell && $(MAKE) clean
        cd ACE-desktop && $(MAKE) clean
+       cd xshell && $(MAKE) clean
 
 distclean: clean
        rm -rf config.mk tags */.\#* .\#* 
@@ -70,6 +72,7 @@
        $(INSTALL_DATA) doc/INSTALL $(docdir)/antiright
        cd gtkshell && $(MAKE) install
        cd ACE-desktop && $(MAKE) install
+       cd xshell && $(MAKE) install
 
 bzball: distclean
        cd .. && cp -R antiright antiright-$(VERSION) \

Index: gtkshell/gtkshell.h
===================================================================
RCS file: /sources/antiright/antiright/gtkshell/gtkshell.h,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -b -r1.53 -r1.54
--- gtkshell/gtkshell.h 11 Jun 2007 21:32:40 -0000      1.53
+++ gtkshell/gtkshell.h 20 Jul 2007 01:26:34 -0000      1.54
@@ -35,10 +35,6 @@
 #include <unistd.h>
 #include <signal.h>
 
-#ifdef LIBGC
-#include <gc.h>
-#endif /* LIBGC */
-
 #include "../libantiright/library.h"
 
 #ifndef YYFILE

Index: gtkshell/main.c
===================================================================
RCS file: /sources/antiright/antiright/gtkshell/main.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -b -r1.27 -r1.28
--- gtkshell/main.c     11 Jun 2007 21:32:43 -0000      1.27
+++ gtkshell/main.c     20 Jul 2007 01:26:35 -0000      1.28
@@ -22,10 +22,6 @@
 
 #include "gtkshell.h"
 
-#ifdef LIBGC
-#include <gc.h>
-#endif /* LIBGC */
-
 static void
 setup_gui(struct GSH * gsh, const gint argc, const gchar ** argv)
 {

Index: libantiright/library.h
===================================================================
RCS file: /sources/antiright/antiright/libantiright/library.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -b -r1.19 -r1.20
--- libantiright/library.h      14 May 2007 18:06:35 -0000      1.19
+++ libantiright/library.h      20 Jul 2007 01:26:35 -0000      1.20
@@ -40,4 +40,8 @@
 
 #include "macros.h"
 
+#ifdef LIBGC
+#include <gc/gc.h>
+#endif /* LIBGC */
+
 #endif                         /* LIBAR_LIBRARY_H */

Index: libantiright/util.c
===================================================================
RCS file: /sources/antiright/antiright/libantiright/util.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- libantiright/util.c 20 May 2007 18:29:58 -0000      1.18
+++ libantiright/util.c 20 Jul 2007 01:26:35 -0000      1.19
@@ -21,9 +21,6 @@
 */
 
 #include "library.h"
-#ifdef LIBGC
-#include <gc.h>
-#endif /* LIBGC */
 
 gpointer
 xmalloc(size_t size)

Index: xshell/arguments.c
===================================================================
RCS file: /sources/antiright/antiright/xshell/arguments.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/arguments.c  20 Jul 2007 00:57:20 -0000      1.1
+++ xshell/arguments.c  20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 
 #include "xshell.h"
 

Index: xshell/arguments.h
===================================================================
RCS file: /sources/antiright/antiright/xshell/arguments.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/arguments.h  20 Jul 2007 00:57:20 -0000      1.1
+++ xshell/arguments.h  20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 #ifndef XSH_ARGS_H
 #define XSH_ARGS_H
 void

Index: xshell/decoration.c
===================================================================
RCS file: /sources/antiright/antiright/xshell/decoration.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/decoration.c 20 Jul 2007 00:57:20 -0000      1.1
+++ xshell/decoration.c 20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 #ifdef XSH_DECORATE
 #include "xshell.h"
 

Index: xshell/decoration.h
===================================================================
RCS file: /sources/antiright/antiright/xshell/decoration.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/decoration.h 20 Jul 2007 00:57:20 -0000      1.1
+++ xshell/decoration.h 20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 #ifdef XSH_DECORATE
 
 #ifndef XSH_DECOR_H

Index: xshell/events.c
===================================================================
RCS file: /sources/antiright/antiright/xshell/events.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/events.c     20 Jul 2007 00:57:20 -0000      1.1
+++ xshell/events.c     20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 
 #include "xshell.h"
 
@@ -61,14 +83,9 @@
 {
        XWidget * iter;
 
-       XMSG("xshell_foreach_XWidget()");
        iter=head;
        while(iter)
        {
-               XMSG("event received");
-#ifdef DEBUG
-               assert(iter);
-#endif /* DEBUG */
                /* Only process event if it occurs on a particular window.  */
                if(event->xany.window!=iter->window)
                {
@@ -78,7 +95,6 @@
                select_event(iter, event);
                iter=iter->next;
        }
-       XMSG("end xshell_foreach_XWidget()");
 }
 
 void

Index: xshell/events.h
===================================================================
RCS file: /sources/antiright/antiright/xshell/events.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/events.h     20 Jul 2007 00:57:20 -0000      1.1
+++ xshell/events.h     20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 
 #ifndef XSH_EVENTS_H
 #define XSH_EVENTS_H

Index: xshell/layout.c
===================================================================
RCS file: /sources/antiright/antiright/xshell/layout.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/layout.c     20 Jul 2007 00:57:20 -0000      1.1
+++ xshell/layout.c     20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 
 #include "xshell.h"
 

Index: xshell/layout.h
===================================================================
RCS file: /sources/antiright/antiright/xshell/layout.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/layout.h     20 Jul 2007 00:57:21 -0000      1.1
+++ xshell/layout.h     20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 #ifndef XSH_LAYOUT_H
 #define XSH_LAYOUT_H
 

Index: xshell/shell.c
===================================================================
RCS file: /sources/antiright/antiright/xshell/shell.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/shell.c      20 Jul 2007 00:57:21 -0000      1.1
+++ xshell/shell.c      20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 #include "xshell.h"
 
 static void

Index: xshell/shell.h
===================================================================
RCS file: /sources/antiright/antiright/xshell/shell.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/shell.h      20 Jul 2007 00:57:21 -0000      1.1
+++ xshell/shell.h      20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 
 #ifndef XSH_SHELL_H
 #define XSH_SHELL_H

Index: xshell/text.c
===================================================================
RCS file: /sources/antiright/antiright/xshell/text.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/text.c       20 Jul 2007 00:57:21 -0000      1.1
+++ xshell/text.c       20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 #include "xshell.h"
 
 static void

Index: xshell/text.h
===================================================================
RCS file: /sources/antiright/antiright/xshell/text.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- xshell/text.h       20 Jul 2007 00:57:21 -0000      1.1
+++ xshell/text.h       20 Jul 2007 01:26:35 -0000      1.2
@@ -1,3 +1,25 @@
+/*
+  AntiRight
+  (c) 2002-2007 Jeffrey Bedard
+  address@hidden
+
+  This file is part of AntiRight.
+
+  AntiRight is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  AntiRight is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with AntiRight; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+*/
+
 
 #ifndef XSH_TEXT_H
 #define XSH_TEXT_H




reply via email to

[Prev in Thread] Current Thread [Next in Thread]