[gephex-devel] gephex--main--0.4--patch-1823
gephex at sonnenland.kexbox.org
gephex at sonnenland.kexbox.org
Wed Dec 8 17:57:51 CET 2004
Archive: gephex at gephex.org--2004
New revision: gephex--main--0.4--patch-1823
--
Revision: gephex--main--0.4--patch-1823
Archive: gephex at gephex.org--2004
Creator: GePhex <gephex at gephex.org>
Date: Wed Dec 8 17:57:38 CET 2004
Standard-date: 2004-12-08 16:57:38 GMT
New-files: modules/src/timesourcemodule/.arch-ids/=id
modules/src/timesourcemodule/.arch-ids/Makefile.am.id
modules/src/timesourcemodule/.arch-ids/timesourcemodule.cpp.id
modules/src/timesourcemodule/.arch-ids/timesourcemodule.spec.id
modules/src/timesourcemodule/.arch-ids/timesourcemodule.xpm.id
modules/src/timesourcemodule/Makefile.am
modules/src/timesourcemodule/timesourcemodule.cpp
modules/src/timesourcemodule/timesourcemodule.spec
modules/src/timesourcemodule/timesourcemodule.xpm
New-directories: modules/src/timesourcemodule
modules/src/timesourcemodule/.arch-ids
Modified-files: configure.ac modules/src/Makefile.am
modules/src/funparsemodule/parser.tab.c
modules/src/funparsemodule/parser.tab.h
New-patches: gephex at gephex.org--2004/gephex--main--0.4--patch-1823
martin at gephex.org--2004/gephex--timestuff--0.4--base-0
martin at gephex.org--2004/gephex--timestuff--0.4--patch-1
martin at gephex.org--2004/gephex--timestuff--0.4--patch-2
Summary: add timesource
Keywords:
Patches applied:
* martin at gephex.org--2004/gephex--timestuff--0.4--base-0
tag of gephex at gephex.org--2004/gephex--main--0.4--patch-1822
* martin at gephex.org--2004/gephex--timestuff--0.4--patch-1
new timesource module
* martin at gephex.org--2004/gephex--timestuff--0.4--patch-2
unique icon for the timesource module
* added directories
modules/src/timesourcemodule
modules/src/timesourcemodule/.arch-ids
{arch}/gephex/gephex--timestuff
{arch}/gephex/gephex--timestuff/gephex--timestuff--0.4
{arch}/gephex/gephex--timestuff/gephex--timestuff--0.4/martin at gephex.org--2004
{arch}/gephex/gephex--timestuff/gephex--timestuff--0.4/martin at gephex.org--2004/patch-log
* added files
modules/src/timesourcemodule/.arch-ids/=id
modules/src/timesourcemodule/.arch-ids/Makefile.am.id
modules/src/timesourcemodule/.arch-ids/timesourcemodule.cpp.id
modules/src/timesourcemodule/.arch-ids/timesourcemodule.spec.id
modules/src/timesourcemodule/.arch-ids/timesourcemodule.xpm.id
modules/src/timesourcemodule/Makefile.am
modules/src/timesourcemodule/timesourcemodule.cpp
modules/src/timesourcemodule/timesourcemodule.spec
modules/src/timesourcemodule/timesourcemodule.xpm
{arch}/gephex/gephex--main/gephex--main--0.4/gephex at gephex.org--2004/patch-log/patch-1823
{arch}/gephex/gephex--timestuff/gephex--timestuff--0.4/martin at gephex.org--2004/patch-log/base-0
{arch}/gephex/gephex--timestuff/gephex--timestuff--0.4/martin at gephex.org--2004/patch-log/patch-1
{arch}/gephex/gephex--timestuff/gephex--timestuff--0.4/martin at gephex.org--2004/patch-log/patch-2
* modified files
--- orig/configure.ac
+++ mod/configure.ac
@@ -467,6 +467,7 @@
modules/src/signalgenmodule/Makefile
modules/src/staticcolormodule/Makefile
modules/src/stringtokenizermodule/Makefile
+modules/src/timesourcemodule/Makefile
modules/src/tunnelmodule/Makefile
modules/src/twolayermodule/Makefile
modules/src/xfademodule/Makefile
--- orig/modules/src/Makefile.am
+++ mod/modules/src/Makefile.am
@@ -84,6 +84,7 @@
signalgenmodule \
staticcolormodule \
stringtokenizermodule \
+ timesourcemodule \
tunnelmodule \
twolayermodule \
xfademodule \
--- orig/modules/src/funparsemodule/parser.tab.c
+++ mod/modules/src/funparsemodule/parser.tab.c
@@ -90,7 +90,7 @@
/* Copy the first part of user declarations. */
-#line 2 "parser.y"
+#line 2 "./parser.y"
/* This source file is a part of the GePhex Project.
@@ -145,7 +145,7 @@
#endif
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
-#line 45 "parser.y"
+#line 45 "./parser.y"
typedef union YYSTYPE {
struct slist_s_t* list;
struct expression_s_t* expr;
@@ -1057,7 +1057,7 @@
switch (yyn)
{
case 2:
-#line 85 "parser.y"
+#line 85 "./parser.y"
{
expression_t* e = (expression_t*) parm;
*e = yyvsp[0].expr;
@@ -1065,14 +1065,14 @@
break;
case 3:
-#line 91 "parser.y"
+#line 91 "./parser.y"
{
yyval.expr = expression_create_const(yyvsp[0].num);
;}
break;
case 4:
-#line 94 "parser.y"
+#line 94 "./parser.y"
{
slist_t args = slist_create();
slist_push_front(args, yyvsp[0].expr);
@@ -1083,7 +1083,7 @@
break;
case 5:
-#line 101 "parser.y"
+#line 101 "./parser.y"
{
slist_t args = slist_create();
slist_push_front(args, yyvsp[0].expr);
@@ -1094,7 +1094,7 @@
break;
case 6:
-#line 108 "parser.y"
+#line 108 "./parser.y"
{
slist_t args = slist_create();
slist_push_front(args, yyvsp[0].expr);
@@ -1105,7 +1105,7 @@
break;
case 7:
-#line 115 "parser.y"
+#line 115 "./parser.y"
{
slist_t args = slist_create();
slist_push_front(args, yyvsp[0].expr);
@@ -1116,7 +1116,7 @@
break;
case 8:
-#line 122 "parser.y"
+#line 122 "./parser.y"
{
slist_t args = slist_create();
slist_push_front(args, yyvsp[0].expr);
@@ -1127,7 +1127,7 @@
break;
case 9:
-#line 129 "parser.y"
+#line 129 "./parser.y"
{
slist_t args = slist_create();
slist_push_front(args, yyvsp[0].expr);
@@ -1138,7 +1138,7 @@
break;
case 10:
-#line 136 "parser.y"
+#line 136 "./parser.y"
{
slist_t args = slist_create();
slist_push_front(args, yyvsp[0].expr);
@@ -1148,7 +1148,7 @@
break;
case 11:
-#line 142 "parser.y"
+#line 142 "./parser.y"
{
slist_t args = slist_create();
slist_push_front(args, yyvsp[-1].expr);
@@ -1158,14 +1158,14 @@
break;
case 12:
-#line 149 "parser.y"
+#line 149 "./parser.y"
{
yyval.expr = expression_create_var(yyvsp[0].text)
;}
break;
case 13:
-#line 152 "parser.y"
+#line 152 "./parser.y"
{
yyval.expr = expression_create_fun(yyvsp[-3].text, yyvsp[-1].list);
free(yyvsp[-3].text);
@@ -1173,14 +1173,14 @@
break;
case 14:
-#line 157 "parser.y"
+#line 157 "./parser.y"
{
yyval.expr=yyvsp[-1].expr;
;}
break;
case 15:
-#line 162 "parser.y"
+#line 162 "./parser.y"
{
yyval.list = slist_create();
slist_push_front(yyval.list, yyvsp[0].expr);
@@ -1188,7 +1188,7 @@
break;
case 16:
-#line 166 "parser.y"
+#line 166 "./parser.y"
{
yyval.list = yyvsp[0].list;
slist_push_front(yyval.list, yyvsp[-2].expr);
@@ -1393,7 +1393,7 @@
}
-#line 172 "parser.y"
+#line 172 "./parser.y"
/* Grammatik endet hier */
--- orig/modules/src/funparsemodule/parser.tab.h
+++ mod/modules/src/funparsemodule/parser.tab.h
@@ -66,7 +66,7 @@
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
-#line 45 "parser.y"
+#line 45 "./parser.y"
typedef union YYSTYPE {
struct slist_s_t* list;
struct expression_s_t* expr;
More information about the gephex-devel
mailing list