You can subscribe to this list here.
| 2006 |
Jan
(14) |
Feb
(19) |
Mar
(1) |
Apr
(6) |
May
(6) |
Jun
(13) |
Jul
(24) |
Aug
(7) |
Sep
(15) |
Oct
(10) |
Nov
(6) |
Dec
(6) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(2) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: joel1234567 <joe...@te...> - 2016-06-08 05:36:07
|
hello openstil http://naplessportsgrille.com/fourth.php?test=1549v4smsyfb Thanks so much |
|
From: J. W. <joe...@ya...> - 2007-02-22 05:49:12
|
Looks like the regression tests have failed for over a week now. Looking at= the sourceforge site status page, there are upgrades to the shell.sourcefo= rge.net server. My regression test runs aren't making it back to the server= since it is refusing connections. Attempts to ssh to the shell server won'= t let me in. Looks like it may be back up soon. If not, I'll do more diggin= g.=0A =0AJoel Wheeler=0A=0A=0A =0A_________________________________________= ___________________________________________=0ADon't get soaked. Take a qui= ck peak at the forecast=0Awith the Yahoo! Search weather shortcut.=0Ahttp:/= /tools.search.yahoo.com/shortcuts/#loc_weather |
|
From: Doug S. <dsp...@gm...> - 2007-02-11 03:40:04
|
I've installed a small tweak to stiltest.sh which takes into account the new directory structure which now allows "make test" to work properly Doug |
|
From: J. W. <joe...@ya...> - 2007-01-10 15:08:43
|
Luo,=0A=0AI am moving the last part of this thread to developers mailing li= st.=0A=0AIt looks as though your browser may need a 'reload'- it appears th= at it is trying to access an old path to the data. Try going to the homepag= e ( http://openstil.sourceforge.net/ ) and reload that page in your browser= , and try again. =0A=0AIf that does not work, the full path to the URL docs= is=0Ahttp://openstil.sourceforge.net/docs/gen/dox/html/index.html=0A =0AJo= el Wheeler=0A=0A----- Original Message ----=0AFrom: "xkl...@ya..."= <xkl...@ya...>=0ATo: J. W. <joe...@ya...>=0ACc: Doug Spr= ague <dsp...@gm...>=0ASent: Wednesday, January 10, 2007 6:44:00 AM=0A= Subject: Re: I want to join your team=0A=0AHello Joel,=0A =0A Thank you = for the advice.=0A =0A However I failed to get the API documentation bec= ause of the following error:=0A =0A 1. Server: openstil.sourceforge.net= =0A=0A2. URL path: /dox/gen/html/index.html=0A=0A3. Error notes: File does = not exist: /home/groups/o/op/openstil/htdocs/dox/gen/html/index.html=0A=0A4= . Error type: 404=0A=0A5. Request method: GET=0A=0A6. Request query string:= =0A=0A7. Time: 2007-01-10 03:30:38 PST (1168428638)=0A =0A Would you pl= ease have a check on it?=0A =0A I agree with you on moving our discussio= n to the mail list. I think the discussion may be useful to those who have = interest in our project.=0A =0A =0A Best regards,=0A Luo=0A =0A =0A = =0A=0A"J. W." <joe...@ya...> wrote:=0A Luo,=0A=0A=0A=0A>>1= . Making the development environment.=0A=0A=0A=0AFirst, you will need to ha= ve the SubVersion ("svn") application installed on your system to get the l= atest source code. We use SourceForge's subversion system as our revision c= ontrol system. If you are not familiar with subversion, it is basically sim= ilar to CVS in it's functionality and commands.=0A You should be able to fi= nd more information online. =0A=0A=0A=0AAs Doug suggests, you can get the l= atest source by running=0A=0A=0A=0Asvn co https://openstil.svn.sourceforge.= net/svnroot/openstil openstil=0A=0A=0A=0AThis will give you the entire sour= ce code package, including all revisions. You will want to work in the 'tru= nk' directory of the tree. Or, if you do not want all revisions of the sour= ce, and just want the latest, you can run:=0A=0A=0A=0Asvn co https://openst= il.svn.sourceforge.net/svnroot/openstil/trunk openstil=0A=0A=0A=0AOnce you = get the source, the environment is pretty simple. Read the 'INSTALL' file f= or info on how to run the build process. It is basically just a matter of g= oing to the 'src' dir and executing a 'gmake'.=0A=0A=0A=0A>> 2. Knowing the= architecture of the code.=0A=0A=0A=0AThe API and it's contents are documen= ted on the OpenSTIL homepage, at=0A=0A=0A=0Ahttp://openstil.sourceforge.net= /=0A=0A=0A=0AProbably the link to 'API documentation' is the best place to = start.=0A=0A=0A=0AI would also suggest reviewing some of the existing sourc= e code to get a feel for the programming style and structure of the API.=0A= =0A=0A=0A >> 3. Adding support for 1450.1 "PatternFailReport".=0A=0A=0A=0A= While reviewing the API and the existing source code you should get a good = feel for how the current API is structured and implemented. You should also= check out the docs/Programmers.Guidelines file (in the downloaded source p= ackage) for more info on how to add comments that can be=0A picked up by th= e documentation tool, how to format variable names, etc, so that we can mai= ntain a fairly consistent approach to implementing the code.=0A=0A=0A=0A=0A= >> 4. Adding API support for these fail data blocks.=0A=0A=0A=0AFirst, yo= u'll need to add this new block into the parser, made up of the lexer (stil= tok.l) and the grammar (stilgmr.y). Then you'll need to create the data str= uctures to hold the parsed data. Once you've started examining the source c= ode we can discuss this in more=0A detail.=0A=0A=0A=0A=0A >> 5. Doing more= ...=0A >> =0A >>In doing 1 and 2, I will try to find as much information = as I can from sourceforge. I have not got enough time to read >>through all= the mail list and the documents. If possible, I would like some=0A advice = on how to read them. I mean the priority.=0A=0A=0A=0AIt would be beneficial= to read through that information as you have time, just to get some perspe= ctive on the history of the project and what has been done so far. But I wo= uldn't make this your top priority.=0A=0A=0A =0A>> Besides, is there any = difference in being a registered member of OpenSTIL or not? I mean is there= any information that can >> only be seen by registered members?=0A=0A=0A= =0AIt would be a good idea for you to get registered if you do become an ac= tive contributor. Without being registered, we cannot give you any admin ac= cess to the project, or the access to commit any changes to the source code= .=0A=0A=0A=0AAlso- I would like to move this discussion to the developer ma= iling list if that is OK with you. Then the discussion can be documented an= d others will know that you may potentially be doing some 1450.1 work. I wo= uld only post this reposnse, and the questions from your last reply.=0A=0A = =0AJoel Wheeler =0A=0A=0A=0A ----- Original Message ----=0A=0AFrom: "xk= lu...@ya..." <xkl...@ya...>=0A=0ATo: J. W. <joel1234567@ya= hoo.com>; Doug Sprague <dsp...@gm...>=0A=0ASent: Tuesday, January 9, = 2007 7:30:00 AM=0A=0ASubject: Re: I want to join your team=0A=0A=0A=0A Hel= lo Joel,=0A =0A Glad to hear from you.=0A That sounds good. I think it = will be a good start for me in OpenSTIL.=0A =0A From now I am going to d= o:=0A 1. Making the development environment.=0A 2. Knowing the=0A archite= cture of the code.=0A 3. Adding support for 1450.1 "PatternFailReport".=0A= 4. Adding API support for these fail data blocks.=0A 5. Doing more...=0A= =0A In doing 1 and 2, I will try to find as much information as I can f= rom=0A sourceforge. I have not got enough time to read through all the mail= list and the documents. If possible, I would like some advice on how to re= ad them. I mean the priority.=0A =0A Besides, is there any difference in= being a registered member of OpenSTIL or not? I mean=0A is there any infor= mation that can only be seen by registered members?=0A=0A=0A I will have t= o bother you and Doug a lot for some help from now on. I am glad that I can= do something for OpenSTIL.=0A =0A Best regards,=0A Luo=0A =0A =0A= =0A"J. W." <joe...@ya...> wrote:=0A Hello Luo,=0A=0A=0A=0AGlad = to hear of your interest in the OpenSTIL project!=0A=0A=0A=0AFor things tha= t people are working on, I do agree with Doug that we should probably get t= he "Tasks" section of our SourceForge site up and running, and list some pr= ojects that developers are working on and the status of those. It would be = good for us- and anyone viewing the project that is not on=0A a mailing lis= t- to keep up with what is happening in development. Most of the work is un= scheduled, as we work on it in our spare time, and there are not currently = major projects driving a schedule.=0A=0A=0A=0AI had been thinking about put= ting together an application to do some fail data analysis. It would proces= s a STIL Pattern block, and a STIL PatternFailReport, and then from that da= ta it could identify the specific failing STIL vectors. This would require = the addition of support for the 1450.1=0A "PatternFailReport" block in the= OpenSTIL API. Adding API support for these fail data blocks might be a goo= d starting point for you to do some programming and familiarize yourself wi= th the project if you are interested.=0A=0A=0A=0A =0AJoel Wheeler=0A=0A= =0A=0A=0A=0A=0A=0A=0A=0A =0A_______________________________________________= _____________________________________=0AAny questions? Get answers on any t= opic at www.Answers.yahoo.com. Try it now. |
|
From: J. W. <joe...@ya...> - 2007-01-02 16:40:01
|
Doug-=0A=0AWhat version of swig are you using? I needed to download a new v=
ersion to get things working. I currently have 1.3.29 on my system. I think=
you'll want at least that version.=0A=0AAlso, I have some hardcoded paths/=
flags in those makefiles to find the EXTERN.h-type files and some perl libr=
aries. For example, -I/usr/lib/perl5/5.8.0/i386-linux-thread-multi/CORE . I=
think you'll want to find any path that has a 'CORE' in it, and update it =
to match your install. These should include some "-I" and "-L" flags. =0A=
=0AYou may want to create a new "Makefile.ubuntu" or something if it gets t=
oo complicated trying to make it work portably... I admit, I just kind of h=
acked those makefiles together initially hoping that maybe by making a perl=
wrapper available that someone else might pick it up and run with it. With=
the additional dependencies that the wrapper brings in, this would definit=
ely be an area that could benefit from the more portable and automated "con=
figure/make"-type process.=0A =0AJoel Wheeler=0A=0A----- Original Message -=
---=0AFrom: Doug Sprague <dsp...@gm...>=0ATo: List for development du=
scussions <ope...@li...>=0ASent: Friday, December 2=
9, 2006 12:48:16 AM=0ASubject: [Openstil-devel] Ubuntu updates to Perl Wrap=
per, in prep for Ruby Wrapper=0A=0AJoel, =0A=0AAs you know, I'm in the proc=
ess of building a Ruby wrapper for OpenSTIL, and I'm using=0Ayour Perl wrap=
per as a starting point. Also, I'm doing this on Ubuntu.=0A=0AAnyway, I'm =
first ensuring I can get your Perl wrapper to build properly on Ubuntu. I'v=
e just=0A=0Acommitted some small tweaks to Makefile.linux and swigit.sh rel=
ated to the Ubuntu build.=0A=0AThese changes get me further along (and hope=
fully don't break on other platforms :-) ). I'm now=0Aat a point where I g=
et a lot of errors during the compilation step of the wrapper itself. Atta=
ched=0A=0Ais a log file of errors I get after I type make now inside the pe=
rl wrapper directory. I'll dig through =0Athese but first wanted to pass =
them by you just incase something jumped out at you on any leads=0Ayou may =
give me. Don't spend a lot of time on this, just seeing if they ring any b=
ells before I dig=0A=0Afurther.=0A=0AThanks,=0ADoug=0A=0A./swigit.sh=0A+ un=
ame -s=0A+ OSTYPE=3DLinux=0A+ test Linux =3D CYGWIN_NT-5.1=0A+ test Linux =
=3D Linux=0A+ make -f Makefile.linux=0Amake[1]: Entering directory `/home/d=
sprague/sf/openstil/trunk/wrappers/perl'=0Acd ../../src && make -f Makefile=
=0Amake[2]: Entering directory `/home/dsprague/sf/openstil/trunk/src'=0Amak=
e[2]: Nothing to be done for `all'.=0Amake[2]: Leaving directory `/home/dsp=
rague/sf/openstil/trunk/src'=0Arm -f oswplhelper.o; g++ -shared -fPIC -c os=
wplhelper.cpp -I../../src -o oswplhelper.o=0A# Results of swig are saved in=
swig.log=0Aswig -perl5 -c++ -I../../src OSWpl.i > swig.log 2>&1=0Ag++ -c =
-fpic OSWpl_wrap.cxx -I../../src -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HA=
VE_PIDS -DDEBUGGING -fno-strict-aliasing -isystem /usr/local/include -D_LAR=
GEFILE_SOURCE -D_FILE_OFFSET_BITS=3D64 -I/usr/include/gdbm -I/usr/lib/perl5=
/5.8.0/i386-linux-thread-multi/CORE=0AOSWpl_wrap.cxx:707:20: error: EXTERN.=
h: No such file or directory=0AOSWpl_wrap.cxx:708:18: error: perl.h: No suc=
h file or directory=0AOSWpl_wrap.cxx:709:18: error: XSUB.h: No such file or=
directory=0AOSWpl_wrap.cxx:717:28: error: patchlevel.h: No such file or di=
rectory=0AOSWpl_wrap.cxx:720:48: error: could_not_find_Perl_patchlevel.h: N=
o such file or directory=0AOSWpl_wrap.cxx:963: error: typedef =E2=80=98Swig=
MagicFunc=E2=80=99 is initialized (use __typeof__ instead)=0AOSWpl_wrap.cxx=
:963: error: =E2=80=98SV=E2=80=99 was not declared in this scope=0AOSWpl_wr=
ap.cxx:963: error: expected primary-expression before =E2=80=98,=E2=80=99 t=
oken=0AOSWpl_wrap.cxx:963: error: =E2=80=98MAGIC=E2=80=99 was not declared =
in this scope=0AOSWpl_wrap.cxx:963: error: expected primary-expression befo=
re =E2=80=98)=E2=80=99 token=0AOSWpl_wrap.cxx:968: error: typedef =E2=80=98=
SwigMagicFuncHack=E2=80=99 is initialized (use __typeof__ instead)=0AOSWpl_=
wrap.cxx:968: error: =E2=80=98SV=E2=80=99 was not declared in this scope=0A=
OSWpl_wrap.cxx:968: error: expected primary-expression before =E2=80=98,=E2=
=80=99 token=0AOSWpl_wrap.cxx:968: error: =E2=80=98MAGIC=E2=80=99 was not d=
eclared in this scope=0AOSWpl_wrap.cxx:968: error: expected primary-express=
ion before =E2=80=98)=E2=80=99 token=0AOSWpl_wrap.cxx: In function =E2=80=
=98void SWIG_croak_null()=E2=80=99:=0AOSWpl_wrap.cxx:997: error: =E2=80=98S=
V=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:997: error: =E2=
=80=98err=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:997: err=
or: =E2=80=98FALSE=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx=
:997: error: =E2=80=98perl_get_sv=E2=80=99 was not declared in this scope=
=0AOSWpl_wrap.cxx:999: error: =E2=80=98croak=E2=80=99 was not declared in t=
his scope=0AOSWpl_wrap.cxx: At global scope:=0AOSWpl_wrap.cxx:1034: error: =
=E2=80=98SV=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1034: =
error: =E2=80=98sv=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx=
:1034: error: expected primary-expression before =E2=80=98void=E2=80=99=0AO=
SWpl_wrap.cxx:1034: error: expected primary-expression before =E2=80=98*=E2=
=80=99 token=0AOSWpl_wrap.cxx:1034: error: =E2=80=98_t=E2=80=99 was not dec=
lared in this scope=0AOSWpl_wrap.cxx:1034: error: expected primary-expressi=
on before =E2=80=98int=E2=80=99=0AOSWpl_wrap.cxx:1034: error: initializer e=
xpression list treated as compound expression=0AOSWpl_wrap.cxx:1034: error:=
expected =E2=80=98,=E2=80=99 or =E2=80=98;=E2=80=99 before =E2=80=98{=E2=
=80=99 token=0AOSWpl_wrap.cxx:1114: error: variable or field =E2=80=98SWIG_=
Perl_MakePtr=E2=80=99 declared void=0AOSWpl_wrap.cxx:1114: error: =E2=80=98=
SV=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1114: error: =
=E2=80=98sv=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1114: =
error: expected primary-expression before =E2=80=98void=E2=80=99=0AOSWpl_wr=
ap.cxx:1114: error: expected primary-expression before =E2=80=98*=E2=80=99 =
token=0AOSWpl_wrap.cxx:1114: error: =E2=80=98t=E2=80=99 was not declared in=
this scope=0AOSWpl_wrap.cxx:1114: error: expected primary-expression befor=
e =E2=80=98int=E2=80=99=0AOSWpl_wrap.cxx:1114: error: initializer expressio=
n list treated as compound expression=0AOSWpl_wrap.cxx:1114: error: expecte=
d =E2=80=98,=E2=80=99 or =E2=80=98;=E2=80=99 before =E2=80=98{=E2=80=99 tok=
en=0AOSWpl_wrap.cxx:1142: error: expected initializer before =E2=80=98*=E2=
=80=99 token=0AOSWpl_wrap.cxx:1150: error: variable or field =E2=80=98SWIG_=
Perl_MakePackedObj=E2=80=99 declared void=0AOSWpl_wrap.cxx:1150: error: =E2=
=80=98SV=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1150: err=
or: =E2=80=98sv=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:11=
50: error: expected primary-expression before =E2=80=98void=E2=80=99=0AOSWp=
l_wrap.cxx:1150: error: expected primary-expression before =E2=80=98int=E2=
=80=99=0AOSWpl_wrap.cxx:1150: error: expected primary-expression before =E2=
=80=98*=E2=80=99 token=0AOSWpl_wrap.cxx:1150: error: =E2=80=98type=E2=80=99=
was not declared in this scope=0AOSWpl_wrap.cxx:1150: error: initializer e=
xpression list treated as compound expression=0AOSWpl_wrap.cxx:1150: error:=
expected =E2=80=98,=E2=80=99 or =E2=80=98;=E2=80=99 before =E2=80=98{=E2=
=80=99 token=0AOSWpl_wrap.cxx:1160: error: expected initializer before =E2=
=80=98*=E2=80=99 token=0AOSWpl_wrap.cxx:1169: error: =E2=80=98SV=E2=80=99 w=
as not declared in this scope=0AOSWpl_wrap.cxx:1169: error: =E2=80=98obj=E2=
=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1169: error: expecte=
d primary-expression before =E2=80=98void=E2=80=99=0AOSWpl_wrap.cxx:1169: e=
rror: expected primary-expression before =E2=80=98int=E2=80=99=0AOSWpl_wrap=
.cxx:1169: error: expected primary-expression before =E2=80=98*=E2=80=99 to=
ken=0AOSWpl_wrap.cxx:1169: error: =E2=80=98ty=E2=80=99 was not declared in =
this scope=0AOSWpl_wrap.cxx:1169: error: initializer expression list treate=
d as compound expression=0AOSWpl_wrap.cxx:1169: error: expected =E2=80=98,=
=E2=80=99 or =E2=80=98;=E2=80=99 before =E2=80=98{=E2=80=99 token=0AOSWpl_w=
rap.cxx:1191: error: ISO C++ forbids declaration of =E2=80=98XS=E2=80=99 wi=
th no type=0AOSWpl_wrap.cxx:1191: error: typedef =E2=80=98XS=E2=80=99 is in=
itialized (use __typeof__ instead)=0AOSWpl_wrap.cxx:1191: error: =E2=80=98S=
wigPerlWrapper=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:119=
2: error: expected initializer before =E2=80=98*=E2=80=99 token=0AOSWpl_wra=
p.cxx:1197: error: =E2=80=98SwigPerlWrapperPtr=E2=80=99 does not name a typ=
e=0AOSWpl_wrap.cxx:1222: error: =E2=80=98SwigMagicFunc=E2=80=99 does not na=
me a type=0AOSWpl_wrap.cxx:1223: error: =E2=80=98SwigMagicFunc=E2=80=99 doe=
s not name a type=0AOSWpl_wrap.cxx:1231: error: variable or field =E2=80=98=
_swig_create_magic=E2=80=99 declared void=0AOSWpl_wrap.cxx:1231: error: =E2=
=80=98SV=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1231: err=
or: =E2=80=98sv=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:12=
31: error: expected primary-expression before =E2=80=98char=E2=80=99=0AOSWp=
l_wrap.cxx:1231: error: =E2=80=98set=E2=80=99 was not declared in this scop=
e=0AOSWpl_wrap.cxx:1231: error: =E2=80=98SV=E2=80=99 was not declared in th=
is scope=0AOSWpl_wrap.cxx:1231: error: expected primary-expression before =
=E2=80=98,=E2=80=99 token=0AOSWpl_wrap.cxx:1231: error: =E2=80=98MAGIC=E2=
=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1231: error: expecte=
d primary-expression before =E2=80=98)=E2=80=99 token=0AOSWpl_wrap.cxx:1231=
: error: =E2=80=98get=E2=80=99 was not declared in this scope=0AOSWpl_wrap.=
cxx:1231: error: =E2=80=98SV=E2=80=99 was not declared in this scope=0AOSWp=
l_wrap.cxx:1231: error: expected primary-expression before =E2=80=98,=E2=80=
=99 token=0AOSWpl_wrap.cxx:1231: error: =E2=80=98MAGIC=E2=80=99 was not dec=
lared in this scope=0AOSWpl_wrap.cxx:1231: error: expected primary-expressi=
on before =E2=80=98)=E2=80=99 token=0AOSWpl_wrap.cxx:1231: error: initializ=
er expression list treated as compound expression=0AOSWpl_wrap.cxx:1239: er=
ror: expected =E2=80=98,=E2=80=99 or =E2=80=98;=E2=80=99 before =E2=80=98{=
=E2=80=99 token=0AOSWpl_wrap.cxx: In function =E2=80=98swig_module_info* SW=
IG_Perl_GetModule()=E2=80=99:=0AOSWpl_wrap.cxx:1255: error: =E2=80=98SV=E2=
=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1255: error: =E2=80=
=98pointer=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1259: e=
rror: =E2=80=98FALSE=E2=80=99 was not declared in this scope=0AOSWpl_wrap.c=
xx:1259: error: =E2=80=98perl_get_sv=E2=80=99 was not declared in this scop=
e=0AOSWpl_wrap.cxx:1260: error: =E2=80=98SvOK=E2=80=99 was not declared in =
this scope=0AOSWpl_wrap.cxx:1261: error: =E2=80=98SvIV=E2=80=99 was not dec=
lared in this scope=0AOSWpl_wrap.cxx: In function =E2=80=98void SWIG_Perl_S=
etModule(swig_module_info*)=E2=80=99:=0AOSWpl_wrap.cxx:1270: error: =E2=80=
=98SV=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1270: error:=
=E2=80=98pointer=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:=
1273: error: =E2=80=98TRUE=E2=80=99 was not declared in this scope=0AOSWpl_=
wrap.cxx:1273: error: =E2=80=98perl_get_sv=E2=80=99 was not declared in thi=
s scope=0AOSWpl_wrap.cxx:1274: error: =E2=80=98IV=E2=80=99 was not declared=
in this scope=0AOSWpl_wrap.cxx:1274: error: expected primary-expression be=
fore =E2=80=98unsigned=E2=80=99=0AOSWpl_wrap.cxx:1274: error: =E2=80=98sv_s=
etiv=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx: At global sc=
ope:=0AOSWpl_wrap.cxx:1490: warning: =E2=80=98boot_OSWpl=E2=80=99 initializ=
ed and declared =E2=80=98extern=E2=80=99=0AOSWpl_wrap.cxx:1490: error: vari=
able or field =E2=80=98boot_OSWpl=E2=80=99 declared void=0AOSWpl_wrap.cxx:1=
490: error: =E2=80=98CV=E2=80=99 was not declared in this scope=0AOSWpl_wra=
p.cxx:1490: error: =E2=80=98cv=E2=80=99 was not declared in this scope=0AOS=
Wpl_wrap.cxx:1569: error: expected initializer before =E2=80=98*=E2=80=99 t=
oken=0AOSWpl_wrap.cxx:1578: error: expected initializer before =E2=80=98*=
=E2=80=99 token=0AOSWpl_wrap.cxx:1598: error: =E2=80=98SV=E2=80=99 was not =
declared in this scope=0AOSWpl_wrap.cxx:1598: error: =E2=80=98obj=E2=80=99 =
was not declared in this scope=0AOSWpl_wrap.cxx:1598: error: expected prima=
ry-expression before =E2=80=98double=E2=80=99=0AOSWpl_wrap.cxx:1598: error:=
initializer expression list treated as compound expression=0AOSWpl_wrap.cx=
x:1599: error: expected =E2=80=98,=E2=80=99 or =E2=80=98;=E2=80=99 before =
=E2=80=98{=E2=80=99 token=0AOSWpl_wrap.cxx: In function =E2=80=98int SWIG_C=
anCastAsInteger(double*, double, double)=E2=80=99:=0AOSWpl_wrap.cxx:1639: e=
rror: =E2=80=98errno=E2=80=99 was not declared in this scope=0AOSWpl_wrap.c=
xx:1639: error: =E2=80=98EDOM=E2=80=99 was not declared in this scope=0AOSW=
pl_wrap.cxx:1639: error: =E2=80=98ERANGE=E2=80=99 was not declared in this =
scope=0AOSWpl_wrap.cxx: At global scope:=0AOSWpl_wrap.cxx:1663: error: =E2=
=80=98SV=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1663: err=
or: =E2=80=98obj=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1=
663: error: expected primary-expression before =E2=80=98long=E2=80=99=0AOSW=
pl_wrap.cxx:1663: error: initializer expression list treated as compound ex=
pression=0AOSWpl_wrap.cxx:1664: error: expected =E2=80=98,=E2=80=99 or =E2=
=80=98;=E2=80=99 before =E2=80=98{=E2=80=99 token=0AOSWpl_wrap.cxx:1698: er=
ror: =E2=80=98SV=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1=
698: error: =E2=80=98obj=E2=80=99 was not declared in this scope=0AOSWpl_wr=
ap.cxx:1698: error: expected primary-expression before =E2=80=98int=E2=80=
=99=0AOSWpl_wrap.cxx:1698: error: initializer expression list treated as co=
mpound expression=0AOSWpl_wrap.cxx:1699: error: expected =E2=80=98,=E2=80=
=99 or =E2=80=98;=E2=80=99 before =E2=80=98{=E2=80=99 token=0AOSWpl_wrap.cx=
x:1713: error: expected initializer before =E2=80=98*=E2=80=99 token=0AOSWp=
l_wrap.cxx:1727: error: =E2=80=98SV=E2=80=99 was not declared in this scope=
=0AOSWpl_wrap.cxx:1727: error: =E2=80=98obj=E2=80=99 was not declared in th=
is scope=0AOSWpl_wrap.cxx:1727: error: expected primary-expression before =
=E2=80=98bool=E2=80=99=0AOSWpl_wrap.cxx:1727: error: initializer expression=
list treated as compound expression=0AOSWpl_wrap.cxx:1728: error: expected=
=E2=80=98,=E2=80=99 or =E2=80=98;=E2=80=99 before =E2=80=98{=E2=80=99 toke=
n=0AOSWpl_wrap.cxx:1743: error: expected initializer before =E2=80=98*=E2=
=80=99 token=0AOSWpl_wrap.cxx:1764: error: expected initializer before =E2=
=80=98*=E2=80=99 token=0AOSWpl_wrap.cxx:1772: error: =E2=80=98SV=E2=80=99 w=
as not declared in this scope=0AOSWpl_wrap.cxx:1772: error: =E2=80=98obj=E2=
=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1772: error: expecte=
d primary-expression before =E2=80=98unsigned=E2=80=99=0AOSWpl_wrap.cxx:177=
2: error: initializer expression list treated as compound expression=0AOSWp=
l_wrap.cxx:1773: error: expected =E2=80=98,=E2=80=99 or =E2=80=98;=E2=80=99=
before =E2=80=98{=E2=80=99 token=0AOSWpl_wrap.cxx:1815: error: =E2=80=98SV=
=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1815: error: =E2=
=80=98obj=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1815: er=
ror: expected primary-expression before =E2=80=98unsigned=E2=80=99=0AOSWpl_=
wrap.cxx:1815: error: initializer expression list treated as compound expre=
ssion=0AOSWpl_wrap.cxx:1816: error: expected =E2=80=98,=E2=80=99 or =E2=80=
=98;=E2=80=99 before =E2=80=98{=E2=80=99 token=0AOSWpl_wrap.cxx:1830: error=
: expected initializer before =E2=80=98*=E2=80=99 token=0AOSWpl_wrap.cxx:18=
39: error: expected initializer before =E2=80=98*=E2=80=99 token=0AOSWpl_wr=
ap.cxx:1860: error: =E2=80=98SV=E2=80=99 was not declared in this scope=0AO=
SWpl_wrap.cxx:1860: error: =E2=80=98obj=E2=80=99 was not declared in this s=
cope=0AOSWpl_wrap.cxx:1860: error: expected primary-expression before =E2=
=80=98char=E2=80=99=0AOSWpl_wrap.cxx:1860: error: expected primary-expressi=
on before =E2=80=98*=E2=80=99 token=0AOSWpl_wrap.cxx:1860: error: =E2=80=98=
psize=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1860: error:=
expected primary-expression before =E2=80=98int=E2=80=99=0AOSWpl_wrap.cxx:=
1860: error: initializer expression list treated as compound expression=0AO=
SWpl_wrap.cxx:1861: error: expected =E2=80=98,=E2=80=99 or =E2=80=98;=E2=80=
=99 before =E2=80=98{=E2=80=99 token=0AOSWpl_wrap.cxx:1897: error: expected=
initializer before =E2=80=98*=E2=80=99 token=0AOSWpl_wrap.cxx:1907: error:=
=E2=80=98SV=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1907:=
error: =E2=80=98obj=E2=80=99 was not declared in this scope=0AOSWpl_wrap.c=
xx:1907: error: expected primary-expression before =E2=80=98char=E2=80=99=
=0AOSWpl_wrap.cxx:1907: error: expected primary-expression before =E2=80=98=
size=E2=80=99=0AOSWpl_wrap.cxx:1907: error: initializer expression list tre=
ated as compound expression=0AOSWpl_wrap.cxx:1908: error: expected =E2=80=
=98,=E2=80=99 or =E2=80=98;=E2=80=99 before =E2=80=98{=E2=80=99 token=0AOSW=
pl_wrap.cxx:1931: error: =E2=80=98SV=E2=80=99 was not declared in this scop=
e=0AOSWpl_wrap.cxx:1931: error: =E2=80=98obj=E2=80=99 was not declared in t=
his scope=0AOSWpl_wrap.cxx:1931: error: expected primary-expression before =
=E2=80=98char=E2=80=99=0AOSWpl_wrap.cxx:1931: error: initializer expression=
list treated as compound expression=0AOSWpl_wrap.cxx:1932: error: expected=
=E2=80=98,=E2=80=99 or =E2=80=98;=E2=80=99 before =E2=80=98{=E2=80=99 toke=
n=0AOSWpl_wrap.cxx:1949: error: expected initializer before =E2=80=98*=E2=
=80=99 token=0AOSWpl_wrap.cxx:1962: error: =E2=80=98SV=E2=80=99 was not dec=
lared in this scope=0AOSWpl_wrap.cxx:1962: error: expected primary-expressi=
on before =E2=80=98,=E2=80=99 token=0AOSWpl_wrap.cxx:1962: error: =E2=80=98=
MAGIC=E2=80=99 was not declared in this scope=0AOSWpl_wrap.cxx:1962: error:=
expected primary-expression before =E2=80=98)=E2=80=99 token=0AOSWpl_wrap.=
cxx:1962: error: initializer expression list treated as compound expression=
=0AOSWpl_wrap.cxx:1962: error: expected =E2=80=98,=E2=80=99 or =E2=80=98;=
=E2=80=99 before =E2=80=98{=E2=80=99 token=0AOSWpl_wrap.cxx:1976: error: ex=
pected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:1995: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:2024: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:2056: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
2129: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:2157: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:2199: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:2241: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:2279: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:2331: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:2369: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:2458: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:2490: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
2531: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:2563: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:2604: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:2633: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:2662: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:2700: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:2732: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:2773: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:2805: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
2846: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:2875: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:2917: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:2946: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:2984: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:3013: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:3042: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:3061: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:3090: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
3122: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:3195: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:3223: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:3265: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:3307: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:3345: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:3373: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:3425: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:3463: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
3552: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:3581: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:3610: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:3691: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:3759: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:3813: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:3854: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:4052: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:4120: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
4175: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:4216: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:4355: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:4396: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:4500: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:4591: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:4668: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:4732: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:5038: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
5132: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:5213: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:5280: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:5334: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:5568: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:5662: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:5743: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:5810: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:5864: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
6098: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:6117: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:6149: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:6205: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:6247: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:6279: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:6426: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:6454: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:6482: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
6547: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:6598: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:6639: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:6780: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:6808: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:6836: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:6865: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:6897: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:6938: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
6967: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7009: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:7055: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7096: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:7125: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7166: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:7195: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7236: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:7277: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
7318: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7359: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:7400: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7441: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:7482: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7523: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:7564: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7605: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:7646: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
7675: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7717: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:7773: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7815: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:7904: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7942: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:7961: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:7993: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:8025: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
8097: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8125: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:8163: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8191: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:8223: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8255: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:8283: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8312: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:8331: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
8363: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8395: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:8467: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8495: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:8533: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8561: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:8593: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8625: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:8653: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
8682: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8701: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:8733: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8782: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:8810: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8838: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:8890: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:8928: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:9017: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
9036: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:9068: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:9117: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:9145: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:9173: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:9225: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:9263: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:9352: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:9371: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
9403: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:9452: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:9480: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:9508: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:9560: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:9598: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:9687: error: expected constructor, destructor, o=
r type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:9706: e=
rror: expected constructor, destructor, or type conversion before =E2=80=98=
(=E2=80=99 token=0AOSWpl_wrap.cxx:9738: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
9767: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:9839: error: expected constructo=
r, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_=
wrap.cxx:9867: error: expected constructor, destructor, or type conversion =
before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:9905: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:9946: error: expected constructor, destructor, or type co=
nversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:9987: error: exp=
ected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:10028: error: expected constructor, destructor, =
or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:10069:=
error: expected constructor, destructor, or type conversion before =E2=80=
=98(=E2=80=99 token=0AOSWpl_wrap.cxx:10110: error: expected constructor, de=
structor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.=
cxx:10151: error: expected constructor, destructor, or type conversion befo=
re =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:10192: error: expected constr=
uctor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOS=
Wpl_wrap.cxx:10233: error: expected constructor, destructor, or type conver=
sion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:10284: error: expect=
ed constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 t=
oken=0AOSWpl_wrap.cxx:10326: error: expected constructor, destructor, or ty=
pe conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:10391: erro=
r: expected constructor, destructor, or type conversion before =E2=80=98(=
=E2=80=99 token=0AOSWpl_wrap.cxx:10446: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
10554: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:10596: error: expected construct=
or, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl=
_wrap.cxx:10625: error: expected constructor, destructor, or type conversio=
n before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:10667: error: expected =
constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 toke=
n=0AOSWpl_wrap.cxx:10695: error: expected constructor, destructor, or type =
conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:10738: error: =
expected constructor, destructor, or type conversion before =E2=80=98(=E2=
=80=99 token=0AOSWpl_wrap.cxx:10781: error: expected constructor, destructo=
r, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:108=
24: error: expected constructor, destructor, or type conversion before =E2=
=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:10867: error: expected constructor,=
destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wr=
ap.cxx:10910: error: expected constructor, destructor, or type conversion b=
efore =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:10953: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:10996: error: expected constructor, destructor, or type c=
onversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11025: error: e=
xpected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:11053: error: expected constructor, destructor, =
or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11081:=
error: expected constructor, destructor, or type conversion before =E2=80=
=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11119: error: expected constructor, de=
structor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.=
cxx:11148: error: expected constructor, destructor, or type conversion befo=
re =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11176: error: expected constr=
uctor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOS=
Wpl_wrap.cxx:11205: error: expected constructor, destructor, or type conver=
sion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11224: error: expect=
ed constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 t=
oken=0AOSWpl_wrap.cxx:11256: error: expected constructor, destructor, or ty=
pe conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11305: erro=
r: expected constructor, destructor, or type conversion before =E2=80=98(=
=E2=80=99 token=0AOSWpl_wrap.cxx:11333: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
11361: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11390: error: expected construct=
or, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl=
_wrap.cxx:11436: error: expected constructor, destructor, or type conversio=
n before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11477: error: expected =
constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 toke=
n=0AOSWpl_wrap.cxx:11519: error: expected constructor, destructor, or type =
conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11548: error: =
expected constructor, destructor, or type conversion before =E2=80=98(=E2=
=80=99 token=0AOSWpl_wrap.cxx:11590: error: expected constructor, destructo=
r, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:116=
19: error: expected constructor, destructor, or type conversion before =E2=
=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11638: error: expected constructor,=
destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wr=
ap.cxx:11666: error: expected constructor, destructor, or type conversion b=
efore =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11685: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:11717: error: expected constructor, destructor, or type c=
onversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11766: error: e=
xpected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:11794: error: expected constructor, destructor, =
or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11822:=
error: expected constructor, destructor, or type conversion before =E2=80=
=98(=E2=80=99 token=0AOSWpl_wrap.cxx:11874: error: expected constructor, de=
structor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.=
cxx:11912: error: expected constructor, destructor, or type conversion befo=
re =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12001: error: expected constr=
uctor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOS=
Wpl_wrap.cxx:12020: error: expected constructor, destructor, or type conver=
sion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12052: error: expect=
ed constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 t=
oken=0AOSWpl_wrap.cxx:12101: error: expected constructor, destructor, or ty=
pe conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12129: erro=
r: expected constructor, destructor, or type conversion before =E2=80=98(=
=E2=80=99 token=0AOSWpl_wrap.cxx:12157: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
12209: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12247: error: expected construct=
or, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl=
_wrap.cxx:12336: error: expected constructor, destructor, or type conversio=
n before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12368: error: expected =
constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 toke=
n=0AOSWpl_wrap.cxx:12409: error: expected constructor, destructor, or type =
conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12441: error: =
expected constructor, destructor, or type conversion before =E2=80=98(=E2=
=80=99 token=0AOSWpl_wrap.cxx:12482: error: expected constructor, destructo=
r, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:125=
14: error: expected constructor, destructor, or type conversion before =E2=
=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12555: error: expected constructor,=
destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wr=
ap.cxx:12584: error: expected constructor, destructor, or type conversion b=
efore =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12625: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:12644: error: expected constructor, destructor, or type c=
onversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12676: error: e=
xpected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:12725: error: expected constructor, destructor, =
or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12753:=
error: expected constructor, destructor, or type conversion before =E2=80=
=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12781: error: expected constructor, de=
structor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.=
cxx:12833: error: expected constructor, destructor, or type conversion befo=
re =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12871: error: expected constr=
uctor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOS=
Wpl_wrap.cxx:12960: error: expected constructor, destructor, or type conver=
sion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:12979: error: expect=
ed constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 t=
oken=0AOSWpl_wrap.cxx:13008: error: expected constructor, destructor, or ty=
pe conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:13040: erro=
r: expected constructor, destructor, or type conversion before =E2=80=98(=
=E2=80=99 token=0AOSWpl_wrap.cxx:13113: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
13141: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:13169: error: expected construct=
or, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl=
_wrap.cxx:13221: error: expected constructor, destructor, or type conversio=
n before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:13259: error: expected =
constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 toke=
n=0AOSWpl_wrap.cxx:13348: error: expected constructor, destructor, or type =
conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:13386: error: =
expected constructor, destructor, or type conversion before =E2=80=98(=E2=
=80=99 token=0AOSWpl_wrap.cxx:13415: error: expected constructor, destructo=
r, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:134=
34: error: expected constructor, destructor, or type conversion before =E2=
=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:13466: error: expected constructor,=
destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wr=
ap.cxx:13515: error: expected constructor, destructor, or type conversion b=
efore =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:13543: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:13571: error: expected constructor, destructor, or type c=
onversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:13623: error: e=
xpected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:13661: error: expected constructor, destructor, =
or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:13750:=
error: expected constructor, destructor, or type conversion before =E2=80=
=98(=E2=80=99 token=0AOSWpl_wrap.cxx:13769: error: expected constructor, de=
structor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.=
cxx:13798: error: expected constructor, destructor, or type conversion befo=
re =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:13830: error: expected constr=
uctor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOS=
Wpl_wrap.cxx:13903: error: expected constructor, destructor, or type conver=
sion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:13931: error: expect=
ed constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 t=
oken=0AOSWpl_wrap.cxx:13959: error: expected constructor, destructor, or ty=
pe conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14011: erro=
r: expected constructor, destructor, or type conversion before =E2=80=98(=
=E2=80=99 token=0AOSWpl_wrap.cxx:14049: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
14138: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14179: error: expected construct=
or, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl=
_wrap.cxx:14198: error: expected constructor, destructor, or type conversio=
n before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14230: error: expected =
constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 toke=
n=0AOSWpl_wrap.cxx:14279: error: expected constructor, destructor, or type =
conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14307: error: =
expected constructor, destructor, or type conversion before =E2=80=98(=E2=
=80=99 token=0AOSWpl_wrap.cxx:14335: error: expected constructor, destructo=
r, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:143=
87: error: expected constructor, destructor, or type conversion before =E2=
=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14425: error: expected constructor,=
destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wr=
ap.cxx:14514: error: expected constructor, destructor, or type conversion b=
efore =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14533: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:14563: error: expected constructor, destructor, or type c=
onversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14595: error: e=
xpected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:14627: error: expected constructor, destructor, =
or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14721:=
error: expected constructor, destructor, or type conversion before =E2=80=
=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14749: error: expected constructor, de=
structor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.=
cxx:14791: error: expected constructor, destructor, or type conversion befo=
re =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14833: error: expected constr=
uctor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOS=
Wpl_wrap.cxx:14875: error: expected constructor, destructor, or type conver=
sion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14917: error: expect=
ed constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 t=
oken=0AOSWpl_wrap.cxx:14959: error: expected constructor, destructor, or ty=
pe conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:14988: erro=
r: expected constructor, destructor, or type conversion before =E2=80=98(=
=E2=80=99 token=0AOSWpl_wrap.cxx:15017: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
15046: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15074: error: expected construct=
or, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl=
_wrap.cxx:15102: error: expected constructor, destructor, or type conversio=
n before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15121: error: expected =
constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 toke=
n=0AOSWpl_wrap.cxx:15153: error: expected constructor, destructor, or type =
conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15202: error: =
expected constructor, destructor, or type conversion before =E2=80=98(=E2=
=80=99 token=0AOSWpl_wrap.cxx:15230: error: expected constructor, destructo=
r, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:152=
58: error: expected constructor, destructor, or type conversion before =E2=
=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15286: error: expected constructor,=
destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wr=
ap.cxx:15338: error: expected constructor, destructor, or type conversion b=
efore =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15376: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:15465: error: expected constructor, destructor, or type c=
onversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15506: error: e=
xpected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:15548: error: expected constructor, destructor, =
or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15576:=
error: expected constructor, destructor, or type conversion before =E2=80=
=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15604: error: expected constructor, de=
structor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.=
cxx:15623: error: expected constructor, destructor, or type conversion befo=
re =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15652: error: expected constr=
uctor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOS=
Wpl_wrap.cxx:15684: error: expected constructor, destructor, or type conver=
sion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15757: error: expect=
ed constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 t=
oken=0AOSWpl_wrap.cxx:15785: error: expected constructor, destructor, or ty=
pe conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15813: erro=
r: expected constructor, destructor, or type conversion before =E2=80=98(=
=E2=80=99 token=0AOSWpl_wrap.cxx:15841: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
15882: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:15963: error: expected construct=
or, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl=
_wrap.cxx:16031: error: expected constructor, destructor, or type conversio=
n before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:16085: error: expected =
constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 toke=
n=0AOSWpl_wrap.cxx:16251: error: expected constructor, destructor, or type =
conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:16292: error: =
expected constructor, destructor, or type conversion before =E2=80=98(=E2=
=80=99 token=0AOSWpl_wrap.cxx:16333: error: expected constructor, destructo=
r, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:163=
74: error: expected constructor, destructor, or type conversion before =E2=
=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:16415: error: expected constructor,=
destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wr=
ap.cxx:16456: error: expected constructor, destructor, or type conversion b=
efore =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:16537: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:16605: error: expected constructor, destructor, or type c=
onversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:16659: error: e=
xpected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:16825: error: expected constructor, destructor, =
or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:16906:=
error: expected constructor, destructor, or type conversion before =E2=80=
=98(=E2=80=99 token=0AOSWpl_wrap.cxx:16974: error: expected constructor, de=
structor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.=
cxx:17028: error: expected constructor, destructor, or type conversion befo=
re =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:17194: error: expected constr=
uctor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOS=
Wpl_wrap.cxx:17262: error: expected constructor, destructor, or type conver=
sion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:17317: error: expect=
ed constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 t=
oken=0AOSWpl_wrap.cxx:17358: error: expected constructor, destructor, or ty=
pe conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:17497: erro=
r: expected constructor, destructor, or type conversion before =E2=80=98(=
=E2=80=99 token=0AOSWpl_wrap.cxx:17565: error: expected constructor, destru=
ctor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:=
17620: error: expected constructor, destructor, or type conversion before =
=E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:17661: error: expected construct=
or, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl=
_wrap.cxx:17800: error: expected constructor, destructor, or type conversio=
n before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:17868: error: expected =
constructor, destructor, or type conversion before =E2=80=98(=E2=80=99 toke=
n=0AOSWpl_wrap.cxx:17923: error: expected constructor, destructor, or type =
conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:17964: error: =
expected constructor, destructor, or type conversion before =E2=80=98(=E2=
=80=99 token=0AOSWpl_wrap.cxx:18103: error: expected constructor, destructo=
r, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:181=
84: error: expected constructor, destructor, or type conversion before =E2=
=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:18252: error: expected constructor,=
destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wr=
ap.cxx:18306: error: expected constructor, destructor, or type conversion b=
efore =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:18472: error: expected con=
structor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=
=0AOSWpl_wrap.cxx:18513: error: expected constructor, destructor, or type c=
onversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:18542: error: e=
xpected constructor, destructor, or type conversion before =E2=80=98(=E2=80=
=99 token=0AOSWpl_wrap.cxx:18570: error: expected constructor, destructor, =
or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:18589:=
error: expected constructor, destructor, or type conversion before =E2=80=
=98(=E2=80=99 token=0AOSWpl_wrap.cxx:18618: error: expected constructor, de=
structor, or type conversion before =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.=
cxx:18650: error: expected constructor, destructor, or type conversion befo=
re =E2=80=98(=E2=80=99 token=0AOSWpl_wrap.cxx:18723: error: expected constr=
uctor, destructor, or type conversion before =E2=80=98(=E2=80=99 token=0AOS=
Wpl_wrap.cxx:18751: error: expected construct...
[truncated message content] |
|
From: Doug S. <dsp...@gm...> - 2006-12-29 05:48:18
|
Joel, As you know, I'm in the process of building a Ruby wrapper for OpenSTIL, and I'm using your Perl wrapper as a starting point. Also, I'm doing this on Ubuntu. Anyway, I'm first ensuring I can get your Perl wrapper to build properly on Ubuntu. I've just committed some small tweaks to Makefile.linux and swigit.sh related to the Ubuntu build. These changes get me further along (and hopefully don't break on other platforms :-) ). I'm now at a point where I get a lot of errors during the compilation step of the wrapper itself. Attached is a log file of errors I get after I type make now inside the perl wrapper directory. I'll dig through these but first wanted to pass them by you just incase something jumped out at you on any leads you may give me. Don't spend a lot of time on this, just seeing if they ring any bells before I dig further. Thanks, Doug |
|
From: J. W. <joe...@ya...> - 2006-12-18 15:59:40
|
Sorry, my last message was sent early.... Here is the rest of the message-=
=0A =0A=0A=0APavan,=0A=0AYou need to put the STIL header at the top of EVER=
Y file, not just the first.=0AI am inferring from your example below that y=
our twoSTIL files are:=0A=0A----- file 1 ----------=0ASTIL 1.00;=0ASignals =
{=0AA1 In; A0 In;=0AB1 In;=0AK InOut;=0A}=0A< more stil code >=0A=0A------ =
file 2 ---------=0AW one;=0AV{ALL=3D100H;} //1=0AV{ALL=3D000L;} //2=0AV{ALL=
=3D001L;} //3=0A< more stil code >=0A=0AAs I mentioned in my previous email=
- STIL files require the "STIL 1.00;" statement at the top of EVERY include=
d file. =0AIf you change file2 like this, it will work:=0A=0A------ file 2 =
---------=0ASTIL 1.00; // <--- you need this in every included STIL file=0A=
W one;=0AV{ALL=3D100H;} //1=0AV{ALL=3D000L;} //2=0AV{ALL=3D001L;} //3=0A< m=
ore stil code >=0A=0AAny tools that allow an "Include" of a file without th=
is statement are not be strictly enforcing the STIL spec, which requires th=
is statement.=0A=0AAlso- from your example I am unable to replicate your se=
gmentation fault. Hopefully you were able to resolve this issue.=0A =0AJoel=
Wheeler=0A=0A----- Original Message ----=0AFrom: pavan=0A ghooli <pghooli@=
yahoo.co.in>=0ATo: List for development duscussions <openstil-devel@lists.s=
ourceforge.net>=0ASent: Monday, December 18, 2006 6:19:54 AM=0ASubject: Re:=
[Openstil-devel] (no subject)=0A=0AJoel,=0A=0AI actually put STIL1.00 in t=
he STIL header but there is a problem still. =0A=0AI am attaching three fil=
es to show the problem that we are facing with "INCLUDE" statements.=0A=0A=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A=0Astilex.stil : STIL file =
from where the INCLUDE file is called=0A=0Avectorfile : INCLUDE file=0A=0AE=
rror_Output : Ouput of the OpenSTIL parser=0A=0A=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=0A=0AI am using OpenSTIL 1.0.2.1. My operating system is=
Fedora Linux.=0A=0AI have parallely tried running the same STIL (with the =
INCLUDE file) on Mentor Graphics' STILVerify and I do not get any error.=0A=
=0APlease let me know what is going wrong.=0A=0A =0A=0A=0A=0A =0A=0A----- O=
riginal Message ----=0A: J. W. <joe...@ya...>=0ATo: List for devel=
opment duscussions <ope...@li...>=0ASent: Tuesday, =
12 December, 2006 8:54:46 PM=0ASubject: Re: [Openstil-devel] (no subject)=
=0A=0A=0A>> 1. Issue with include files : Whenever we add an include file w=
ithin a STIL pattern,=0A>> we get syntax errors for the statements included=
within the include file. (The include =0A>> file itself is read though). =
=0A=0AUnfortunately, included STIL files require the "STIL 1.00;" statement=
at the top of EVERY included file. This is most likely the source of your =
problem. Try adding that to the top of your included file.=0A=0A>> The Open=
STIL code does not seem to recognise the =0A>> "IfNeed" construct either.=
=0A=0AYes, this is true. This is currently unsupported in OpenSTIL, althoug=
h I don't think that it would be difficult to implement.=0A=0A>> 2. We see =
the STILEval code crashing (Segmentation Error) whenever we try to increase=
the size =0A>> of the STIL file. We have seen crashes happening when we ta=
ke 1000 vectors with 5=0A signals.=0A>> Has anyone seen this?=0A=0AStileval=
has been run on input files with large amounts of data. The input data siz=
e should not be a problem.=0AThere were a number of things done to speedup =
stileval in the latest release (v1.0.3). Perhaps these are introducing a pr=
oblem?=0A=0ATo try:=0A1) Maybe the build was corrupted? Try a 'gmake clean'=
, then rerun 'gmake'. Does that fix it?=0A2) If using v1.0.3: using the "-O=
<output_filename>" flag will disable some of the things added in v1.0.3. Do=
es this fix the problem?=0A3) If using v1.0.3: try building/running v1.0.2.=
Does that work?=0A=0AAlso:=0A1) What is your operating system?=0A2) Are yo=
u able to send a copy of the STIL that you are trying to process? I can hel=
p debug on this end.=0A=0A=0A =0AJoel Wheeler=0A=0A=0A=0A----- Original Mes=
sage ----=0AFrom: pavan ghooli <pg...@ya...>=0ATo: openstil-devel@l=
ists.sourceforge.net=0ASent: Tuesday, December 12, 2006 4:35:40 AM=0ASubjec=
t: [Openstil-devel] (no subject)=0A=0A=0A=0AWe have started using OpenSTIL =
recently and we have hit the following issues:=0A=0A1. Issue with include f=
iles : Whenever we add an include file within a STIL pattern,=0Awe get synt=
ax errors for the statements included within the include file. (The include=
=0Afile itself is read though). The OpenSTIL code does not seem to recogni=
se the =0A"IfNeed" construct either.=0A=0A2. We see the STILEval code crash=
ing (Segmentation Error) whenever we try to increase the size =0Aof the STI=
L file. We have seen crashes happening when we take 1000 vectors with 5 sig=
nals.=0AHas anyone seen this?=0A=0A =0A=0APavan Ghooli=0A=0A=0A=0A=0AFind o=
ut what India is talking about on - Yahoo! Answers India =0ASend FREE SMS t=
o your friend's mobile from Yahoo! Messenger Version 8. Get it NOW=0A------=
-------------------------------------------------------------------=0ATake =
Surveys. Earn Cash. Influence the Future of IT=0AJoin SourceForge.net's Tec=
hsay panel and you'll get the chance to share your=0Aopinions on IT & busin=
ess topics through brief surveys - and earn cash=0Ahttp://www.techsay.com/d=
efault.php?page=3Djoin.php&p=3Dsourceforge&CID=3DDEVDEV=0A=0A______________=
_________________________________=0AOpenstil-devel mailing list=0AOpenstil-=
de...@li...=0Ahttps://lists.sourceforge.net/lists/listinfo/=
openstil-devel=0A=0A=0A=0A=0A=0A=0A=0A=0AAccess over 1 million songs - Yaho=
o! Music Unlimited.=0A-----------------------------------------------------=
--------------------=0ATake Surveys. Earn Cash. Influence the Future of IT=
=0AJoin SourceForge.net's Techsay panel and you'll get the chance to share =
your=0Aopinions on IT & business topics through brief surveys - and earn ca=
sh=0Ahttp://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=
=3DDEVDEV=0A=0A_______________________________________________=0AOpenstil-d=
evel mailing lis...@li...=0Ahttps://lists.so=
urceforge.net/lists/listinfo/openstil-devel=0A=0A=0A=0A=0A=0A=0ASend free S=
MS to your Friends on Mobile from your Yahoo! Messenger. Download Now! http=
://messenger.yahoo.com/download.phpSTIL 1.00;=0ASignals {=0AA1 In; A0 In;=
=0AB1 In;=0AK InOut;=0A}=0A=0ASignalGroups {=0ACout=3D'K';=0AAbus=3D'A1+A0'=
;=0AALL=3D'Abus+B1+K';=0AABbus=3D'A1+A0+B1';=0A}=0A=0ATiming "stim1" {=0AWa=
veformTable one {=0APeriod '100ns';=0AWaveforms {=0AAbus {01 {'0ns' D/U;'10=
ns' U; }}=0AB1 {01 { '0ns' D/U; '10ns' U;}}=0ACout {LH{'0ns' CompareOffWind=
ow ;'10ns' CompareLowWindow/CompareHighWindow;}}=0A}=0A}=0A}=0A=0APatternBu=
rst "stim burst" {=0APatList=0A{=0A"stim pattern";=0A}=0A}=0A=0APatternExec=
{=0ATiming "stim1";=0APatternBurst "stim burst";=0A}=0A Pattern "stim patt=
ern"=0A{=0AInclude "vectorfile.stil";=0A}=0A=0AW one;=0AV{ALL=3D100H;}=0A /=
/1=0AV{ALL=3D000L;} //2=0AV{ALL=3D001L;} //3=0AV{ALL=3D000L;} //4=0AV{ALL=
=3D010L;} //5=0AV{ALL=3D010L;} //6=0AV{ALL=3D011L;} //7=0AV{ALL=3D011L;} //=
8=0A=0A=0A[anil@localhost src]$ ./stil2wave stilex.stil=0A=0A The open Stil=
code edited for VCD file 1-12-2006=0AI- Opening (input) STIL File: stilex=
.stil [STIL::open]=0AI- Base STIL directory: /home/anil/open_scr_14_12_2006=
/src/ [stiltok_setbase_path]=0AI- Reading Pattern: "stim pattern" [stilgmr]=
=0AI- INCLUDE "vectorfile.stil" [stiltok_getfilename]=0AS- Parsing error de=
tected in file: /home/anil/open_scr_14_12_2006/src/vectorfile.stil [stilcom=
yacc_perror]=0AT- Syntax Error [Line: 1] : Found unexpected token 'W' [stil=
comyacc_perror]=0A *** Abort Level obtained -- Execution Terminated ***=
=0A=0A=0A------------------------------------------------------------------=
-------=0ATake Surveys. Earn Cash. Influence the Future of IT=0AJoin Source=
Forge.net's Techsay panel and you'll get the=0A chance to share your=0Aopin=
ions on IT & business topics through brief surveys - and earn cash=0Ahttp:/=
/www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3DDEVDEV=
=0A_______________________________________________=0AOpenstil-devel mailing=
lis...@li...=0Ahttps://lists.sourceforge.ne=
t/lists/listinfo/openstil-devel=0A=0A=0A=0A=0A=0A=0A_______________________=
___________________________=0ADo You Yahoo!?=0ATired of spam? Yahoo! Mail =
has the best spam protection around =0Ahttp://mail.yahoo.com --------------=
-----------------------------------------------------------=0ATake Surveys.=
Earn Cash. Influence the Future of IT=0AJoin SourceForge.net's Techsay pan=
el and you'll get the chance to share your=0Aopinions on IT & business topi=
cs through brief surveys - and earn cash=0Ahttp://www.techsay.com/default.p=
hp?page=3Djoin.php&p=3Dsourceforge&CID=3DDEVDEV=0A_________________________=
______________________=0AOpenstil-devel mailing list=0AOpenstil-devel@lists=
.sourceforge.net=0Ahttps://lists.sourceforge.net/lists/listinfo/openstil-de=
vel=0A=0A=0A=0A=0A=0A=0A__________________________________________________=
=0ADo You Yahoo!?=0ATired of spam? Yahoo! Mail has the best spam protectio=
n around =0Ahttp://mail.yahoo.com |
|
From: J. W. <joe...@ya...> - 2006-12-18 15:50:28
|
Pavan,=0A=0AYou need to put the STIL header at the top of EVERY file, not j=
ust the first.=0AI am inferring from your example below that your twoSTIL f=
iles are:=0A=0A----- file 1 ----------=0ASTIL 1.00;=0ASignals {=0AA1 In; A0=
In;=0AB1 In;=0AK InOut;=0A}=0A< more stil code >=0A=0A------ file 2 ------=
---=0AW one;=0AV{ALL=3D100H;} //1=0AV{ALL=3D000L;} //2=0AV{ALL=3D001L;} //3=
=0A< more stil code >=0A=0AAs I mentioned before- STIL files require the "S=
TIL 1.00;" statement at the top of EVERY included file. If you change "file=
2" to this:=0A=0A=0A=0A =0AJoel Wheeler=0A=0A----- Original Message ----=
=0AFrom: pavan ghooli <pg...@ya...>=0ATo: List for development dusc=
ussions <ope...@li...>=0ASent: Monday, December 18,=
2006 6:19:54 AM=0ASubject: Re: [Openstil-devel] (no subject)=0A=0AJoel,=0A=
=0AI actually put STIL1.00 in the STIL header but there is a problem still.=
=0A=0AI am attaching three files to show the problem that we are facing wi=
th "INCLUDE" statements.=0A=0A=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=0A=0Astilex.stil : STIL file from where the INCLUDE file is called=0A=0Ave=
ctorfile : INCLUDE file=0A=0AError_Output : Ouput of the OpenSTIL parser=0A=
=0A=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A=0AI am using OpenSTIL 1=
.0.2.1. My operating system is Fedora Linux.=0A=0AI have parallely tried ru=
nning the same STIL (with the INCLUDE file) on Mentor Graphics' STILVerify =
and I do not get any error.=0A=0APlease let me know what is going wrong.=0A=
=0A =0A=0A=0A=0A =0A=0A----- Original Message ----=0A: J. W. <joel1234567@y=
ahoo.com>=0ATo: List for development duscussions <ope...@li...=
ceforge.net>=0ASent: Tuesday, 12 December, 2006 8:54:46 PM=0ASubject: Re: [=
Openstil-devel] (no subject)=0A=0A=0A>> 1. Issue with include files : Whene=
ver we add an include file within a STIL pattern,=0A>> we get syntax errors=
for the statements included within the include file. (The include =0A>> fi=
le itself is read though). =0A=0AUnfortunately, included STIL files require=
the "STIL 1.00;" statement at the top of EVERY included file. This is most=
likely the source of your problem. Try adding that to the top of your incl=
uded file.=0A=0A>> The OpenSTIL code does not seem to recognise the =0A>> "=
IfNeed" construct either.=0A=0AYes, this is true. This is currently unsuppo=
rted in OpenSTIL, although I don't think that it would be difficult to impl=
ement.=0A=0A>> 2. We see the STILEval code crashing (Segmentation Error) wh=
enever we try to increase the size =0A>> of the STIL file. We have seen cra=
shes happening when we take 1000 vectors with 5=0A signals.=0A>> Has anyone=
seen this?=0A=0AStileval has been run on input files with large amounts of=
data. The input data size should not be a problem.=0AThere were a number o=
f things done to speedup stileval in the latest release (v1.0.3). Perhaps t=
hese are introducing a problem?=0A=0ATo try:=0A1) Maybe the build was corru=
pted? Try a 'gmake clean', then rerun 'gmake'. Does that fix it?=0A2) If us=
ing v1.0.3: using the "-O<output_filename>" flag will disable some of the t=
hings added in v1.0.3. Does this fix the problem?=0A3) If using v1.0.3: try=
building/running v1.0.2. Does that work?=0A=0AAlso:=0A1) What is your oper=
ating system?=0A2) Are you able to send a copy of the STIL that you are try=
ing to process? I can help debug on this end.=0A=0A=0A =0AJoel Wheeler=0A=
=0A=0A=0A----- Original Message ----=0AFrom: pavan ghooli <pg...@ya...=
.in>=0ATo: ope...@li...=0ASent: Tuesday, December 1=
2, 2006 4:35:40 AM=0ASubject: [Openstil-devel] (no subject)=0A=0A=0A=0AWe h=
ave started using OpenSTIL recently and we have hit the following issues:=
=0A=0A1. Issue with include files : Whenever we add an include file within =
a STIL pattern,=0Awe get syntax errors for the statements included within t=
he include file. (The include =0Afile itself is read though). The OpenSTIL =
code does not seem to recognise the =0A"IfNeed" construct either.=0A=0A2. W=
e see the STILEval code crashing (Segmentation Error) whenever we try to in=
crease the size =0Aof the STIL file. We have seen crashes happening when we=
take 1000 vectors with 5 signals.=0AHas anyone seen this?=0A=0A =0A=0APava=
n Ghooli=0A=0A=0A=0A=0AFind out what India is talking about on - Yahoo! Ans=
wers India =0ASend FREE SMS to your friend's mobile from Yahoo! Messenger V=
ersion 8. Get it NOW=0A----------------------------------------------------=
---------------------=0ATake Surveys. Earn Cash. Influence the Future of IT=
=0AJoin SourceForge.net's Techsay panel and you'll get the chance to share =
your=0Aopinions on IT & business topics through brief surveys - and earn ca=
sh=0Ahttp://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=
=3DDEVDEV=0A=0A_______________________________________________=0AOpenstil-d=
evel mailing lis...@li...=0Ahttps://lists.so=
urceforge.net/lists/listinfo/openstil-devel=0A=0A=0A=0A=0A=0A=0A=0A=0AAcces=
s over 1 million songs - Yahoo! Music Unlimited.=0A------------------------=
-------------------------------------------------=0ATake Surveys. Earn Cash=
. Influence the Future of IT=0AJoin SourceForge.net's Techsay panel and you=
'll get the chance to share your=0Aopinions on IT & business topics through=
brief surveys - and earn cash=0Ahttp://www.techsay.com/default.php?page=3D=
join.php&p=3Dsourceforge&CID=3DDEVDEV=0A=0A________________________________=
_______________=0AOpenstil-devel mailing lis...@li...=
forge.net=0Ahttps://lists.sourceforge.net/lists/listinfo/openstil-devel=0A=
=0A=0A=0A=0A=0A=0ASend free SMS to your Friends on Mobile from your Yahoo! =
Messenger. Download Now! http://messenger.yahoo.com/download.phpSTIL 1.00;=
=0ASignals {=0AA1 In; A0 In;=0AB1 In;=0AK InOut;=0A}=0A=0ASignalGroups {=0A=
Cout=3D'K';=0AAbus=3D'A1+A0';=0AALL=3D'Abus+B1+K';=0AABbus=3D'A1+A0+B1';=0A=
}=0A=0ATiming "stim1" {=0AWaveformTable one {=0APeriod '100ns';=0AWaveforms=
{=0AAbus {01 {'0ns' D/U;'10ns' U; }}=0AB1 {01 { '0ns' D/U; '10ns' U;}}=0AC=
out {LH{'0ns' CompareOffWindow ;'10ns' CompareLowWindow/CompareHighWindow;}=
}=0A}=0A}=0A}=0A=0APatternBurst "stim burst" {=0APatList=0A{=0A"stim patter=
n";=0A}=0A}=0A=0APatternExec {=0ATiming "stim1";=0APatternBurst "stim burst=
";=0A}=0A Pattern "stim pattern"=0A{=0AInclude "vectorfile.stil";=0A}=0A=0A=
W one;=0AV{ALL=3D100H;} //1=0AV{ALL=3D000L;} //2=0AV{ALL=3D001L;} //3=0AV{A=
LL=3D000L;} //4=0AV{ALL=3D010L;} //5=0AV{ALL=3D010L;} //6=0AV{ALL=3D011L;} =
//7=0AV{ALL=3D011L;} //8=0A=0A=0A[anil@localhost src]$ ./stil2wave stilex.s=
til=0A=0A The open Stil code edited for VCD file 1-12-2006=0AI- Opening (in=
put) STIL File: stilex.stil [STIL::open]=0AI- Base STIL directory: /home/a=
nil/open_scr_14_12_2006/src/ [stiltok_setbase_path]=0AI- Reading Pattern: "=
stim pattern" [stilgmr]=0AI- INCLUDE "vectorfile.stil" [stiltok_getfilename=
]=0AS- Parsing error detected in file: /home/anil/open_scr_14_12_2006/src/v=
ectorfile.stil [stilcomyacc_perror]=0AT- Syntax Error [Line: 1] : Found une=
xpected token 'W' [stilcomyacc_perror]=0A *** Abort Level obtained -- Exe=
cution Terminated ***=0A=0A=0A---------------------------------------------=
----------------------------=0ATake Surveys. Earn Cash. Influence the Futur=
e of IT=0AJoin SourceForge.net's Techsay panel and you'll get the chance to=
share your=0Aopinions on IT & business topics through brief surveys - and =
earn cash=0Ahttp://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourcefo=
rge&CID=3DDEVDEV=0A_______________________________________________=0AOpenst=
il-devel mailing lis...@li...=0Ahttps://list=
s.sourceforge.net/lists/listinfo/openstil-devel=0A=0A=0A=0A=0A=0A=0A_______=
___________________________________________=0ADo You Yahoo!?=0ATired of spa=
m? Yahoo! Mail has the best spam protection around =0Ahttp://mail.yahoo.co=
m |
|
From: pavan g. <pg...@ya...> - 2006-12-18 11:20:04
|
U1RJTCAxLjAwOwpTaWduYWxzIHsKQTEgSW47IEEwIEluOwpCMSBJbjsKSyBJ bk91dDsKfQoKU2lnbmFsR3JvdXBzIHsKQ291dD0nSyc7CkFidXM9J0ExK0Ew JzsKQUxMPSdBYnVzK0IxK0snOwpBQmJ1cz0nQTErQTArQjEnOwp9CgpUaW1p bmcgInN0aW0xIiB7CldhdmVmb3JtVGFibGUgb25lIHsKUGVyaW9kICcxMDBu cyc7CldhdmVmb3JtcyB7CkFidXMgezAxIHsnMG5zJyBEL1U7JzEwbnMnIFU7 IH19CkIxIHswMSB7ICcwbnMnIEQvVTsgJzEwbnMnIFU7fX0KQ291dCB7TEh7 JzBucycgQ29tcGFyZU9mZldpbmRvdyA7JzEwbnMnIENvbXBhcmVMb3dXaW5k b3cvQ29tcGFyZUhpZ2hXaW5kb3c7fX0KfQp9Cn0KClBhdHRlcm5CdXJzdCAi c3RpbSBidXJzdCIgewpQYXRMaXN0CnsKInN0aW0gcGF0dGVybiI7Cn0KfQoK UGF0dGVybkV4ZWMgewpUaW1pbmcgInN0aW0xIjsKUGF0dGVybkJ1cnN0ICJz dGltIGJ1cnN0IjsKfQogUGF0dGVybiAic3RpbSBwYXR0ZXJuIgp7CkluY2x1 ZGUgInZlY3RvcmZpbGUuc3RpbCI7Cn0K |
|
From: J. W. <joe...@ya...> - 2006-12-12 15:24:52
|
>> 1. Issue with include files : Whenever we add an include file within a S= TIL pattern,=0A>> we get syntax errors for the statements included within t= he include file. (The include =0A>> file itself is read though). =0A=0AUnfo= rtunately, included STIL files require the "STIL 1.00;" statement at the to= p of EVERY included file. This is most likely the source of your problem. T= ry adding that to the top of your included file.=0A=0A>> The OpenSTIL code = does not seem to recognise the =0A>> "IfNeed" construct either.=0A=0AYes, t= his is true. This is currently unsupported in OpenSTIL, although I don't th= ink that it would be difficult to implement.=0A=0A>> 2. We see the STILEval= code crashing (Segmentation Error) whenever we try to increase the size = =0A>> of the STIL file. We have seen crashes happening when we take 1000 ve= ctors with 5 signals.=0A>> Has anyone seen this?=0A=0AStileval has been run= on input files with large amounts of data. The input data size should not = be a problem.=0AThere were a number of things done to speedup stileval in t= he latest release (v1.0.3). Perhaps these are introducing a problem?=0A=0AT= o try:=0A1) Maybe the build was corrupted? Try a 'gmake clean', then rerun = 'gmake'. Does that fix it?=0A2) If using v1.0.3: using the "-O<output_filen= ame>" flag will disable some of the things added in v1.0.3. Does this fix t= he problem?=0A3) If using v1.0.3: try building/running v1.0.2. Does that wo= rk?=0A=0AAlso:=0A1) What is your operating system?=0A2) Are you able to sen= d a copy of the STIL that you are trying to process? I can help debug on th= is end.=0A=0A =0AJoel Wheeler=0A=0A----- Original Message ----=0AFrom: pava= n ghooli <pg...@ya...>=0ATo: ope...@li...= =0ASent: Tuesday, December 12, 2006 4:35:40 AM=0ASubject: [Openstil-devel] = (no subject)=0A=0AWe have started using OpenSTIL recently and we have hit t= he following issues:=0A=0A1. Issue with include files : Whenever we add an = include file within a STIL pattern,=0Awe get syntax errors for the statemen= ts included within the include file. (The include =0Afile itself is read th= ough). The OpenSTIL code does not seem to recognise the =0A"IfNeed" constru= ct either.=0A=0A2. We see the STILEval code crashing (Segmentation Error) w= henever we try to increase the size =0Aof the STIL file. We have seen crash= es happening when we take 1000 vectors with 5 signals.=0AHas anyone seen th= is?=0A=0A =0A=0APavan Ghooli=0A=0A=0A=0A=09=0A=0A=09=0A=09=09 =0AFind out w= hat India is talking about on - Yahoo! Answers India =0A =0ASend FREE SMS = to your friend's mobile from Yahoo! Messenger Version 8. Get it NOW--------= -----------------------------------------------------------------=0ATake Su= rveys. Earn Cash. Influence the Future of IT=0AJoin SourceForge.net's Techs= ay panel and you'll get the chance to share your=0Aopinions on IT & busines= s topics through brief surveys - and earn cash=0Ahttp://www.techsay.com/def= ault.php?page=3Djoin.php&p=3Dsourceforge&CID=3DDEVDEV=0A___________________= ____________________________=0AOpenstil-devel mailing list=0AOpenstil-devel= @lists.sourceforge.net=0Ahttps://lists.sourceforge.net/lists/listinfo/opens= til-devel=0A=0A=0A=0A=0A=0A=0A=0A =0A______________________________________= ______________________________________________=0ADo you Yahoo!?=0AEveryone = is raving about the all-new Yahoo! Mail beta.=0Ahttp://new.mail.yahoo.com |
|
From: pavan g. <pg...@ya...> - 2006-12-12 09:35:49
|
We have started using OpenSTIL recently and we have hit the following issue= s:=0A1. Issue with include files : Whenever we add an include file within a= STIL pattern,=0Awe get syntax errors for the statements included within th= e include file. (The include =0Afile itself is read though). The OpenSTIL c= ode does not seem to recognise the =0A"IfNeed" construct either.=0A2. We se= e the STILEval code crashing (Segmentation Error) whenever we try to increa= se the size =0Aof the STIL file. We have seen crashes happening when we tak= e 1000 vectors with 5 signals.=0AHas anyone seen this?=0A=0APavan Ghooli=0A= =0A=0A=09=09=0A__________________________________________________________= =0AYahoo! India Answers: Share what you know. Learn something new=0Ahttp://= in.answers.yahoo.com/ |
|
From: J. W. <joe...@ya...> - 2006-11-17 00:16:00
|
I started the reorganization of the directories. =0A=0AMy original thought = with the project was to keep everything "releasable" in the "openstil" dir = for easier packaging. But I think this new structure will eventually make m= ore sense with a little more work and with a smarter packaging process duri= ng the release.=0A=0AFor now, I basically just moved everything in the "ope= nstil" directory up one level. That will at least remove some of the redund= ancy in the dir names, like "openstil/trunk/openstil...".=0A=0AHOPEFULLY yo= u can just cd to the trunk dir and do a svn update and everything will be u= pdated. If you've made some changes recently I'm not sure exactly what will= happen- if it will merge them or not. If this doesnt work, you might need = to remove everything under trunk (or rename it), and then do an update to p= ickup the new structure.=0A=0AI tried to update the regression process to h= andle the new structure, but we'll see what happens tonight...=0A=0AI will = eventually be making more changes but hopefully they all get reflected with= a "svn update".=0A=0AIf there are any problems or questions please let me = know.=0A =0AJoel Wheeler=0A=0A=0A=0A----- Original Message ----=0AFrom: Dou= g Sprague <dsp...@gm...>=0ATo: List for development duscussions <open= sti...@li...>=0ASent: Wednesday, November 8, 2006 5:35:= 45 PM=0ASubject: Re: [Openstil-devel] new release thoughts=0A=0A=0AJoel, fi= ne by me if you do this before the release. We don't have anything major p= ushing=0Aus to get out there so if things get delayed a bit it should not b= e a problem. Guess we would =0Ajust need to resync up our working copies o= nce you've done that.=0A =0AJust let me know what I need to do, I don't hav= e any pending changes anyway, so should=0Abe able to start from a brand new= checkout.=0A =0ANavneet, any thoughts on this. Are you still able to part= icipate?=0A =0ADoug=0A=0A =0AOn 11/8/06, J. W. <joe...@ya...> wrot= e: =0AI'm thinking that with the new release that I'd like to break it up i= nto 4 peices:=0A1) source code for the API's =0A2) "static" documentation (= doxygen)=0A3) wrappers (perl, others that may come- JNI??)=0A4) testcases= =0A=0AI'd like to rearrange my sandbox to make this all work, and send out = the release based on this new sandbox structure. Ultimately, once working, = the SVN repository would be modified to reflect this new structure as well.= =0A=0AEach peice would have a "tools" subdir, with any of the necessary sc= ripts that went with that peice (packaging for source, build for wrappers, = documentation generation for docs, etc)=0A=0AQuestions:=0A1) If I can get t= his working in the next couple of days, would it be worth trying to get thi= s into this release, or should I wait until the next?=0A2) Is this worth ta= ckling?=0A=0AAn alternative might be to just get a release out now without = the restructuring, and then shortly thereafter put out a new release with t= he rearranged structure. I already have a number of changes in my sandbox t= hat I'd like to get into a new release but hesitate to put into the release= that I'm just about to create- I could roll them into the restructured rel= ease if we do another quick one in the near future. =0A=0A=0A=0AJoel Wheele= r=0A=0A=0A=0A=0A___________________________________________________________= _________________________=0ADo you Yahoo!?=0AEveryone is raving about the a= ll-new Yahoo! Mail.=0Ahttp://new.mail.yahoo.com=0A=0A----------------------= ---------------------------------------------------=0AUsing Tomcat but need= to do more? Need to support web services, security?=0AGet stuff done quick= ly with pre-integrated technology to make your job easier =0ADownload IBM W= ebSphere Application Server v.1.0.1 based on Apache Geronimo=0Ahttp://sel.a= s-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D121642 =0A___= ____________________________________________=0AOpenstil-devel mailing list= =0AO...@li...=0Ahttps://lists.sourceforge.net/lis= ts/listinfo/openstil-devel=0A=0A=0A=0A-------------------------------------= ------------------------------------=0AUsing Tomcat but need to do more? Ne= ed to support web services, security?=0AGet stuff done quickly with pre-int= egrated technology to make your job easier=0ADownload IBM WebSphere Applica= tion Server v.1.0.1 based on Apache Geronimo=0Ahttp://sel.as-us.falkag.net/= sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D121642=0A____________________= ___________________________=0AOpenstil-devel mailing list=0AOpenstil-devel@= lists.sourceforge.net=0Ahttps://lists.sourceforge.net/lists/listinfo/openst= il-devel=0A=0A=0A =0A______________________________________________________= ______________________________=0ASponsored Link=0A=0AMortgage rates near 39= yr lows. =0A$420k for $1,399/mo. Calculate new payment! =0Awww.LowerMyBills= .com/lre |
|
From: J. W. <joe...@ya...> - 2006-11-09 19:52:01
|
=0AFolks,=0A=0AOpenSTIL v1.03 is now available. =0A=0ADownload at:=0Ahttp:/= /sourceforge.net/project/showfiles.php?group_id=3D155779&package_id=3D17357= 6&release_id=3D462142=0A=0A=0ARelease Name: v1.03-1=0A=0A=0AA summary of th= e most recent changes:=0A=0A * Addition of Navneet Jain to the developer te= am=0A * Switch from the CVS repository to SVN (SubVersion) - =0A Doug S= prague=0A * Move regressions from CVS-based repository to SVN - =0A Jo= el Wheeler=0A * configure/make Makefile process updates - =0A = Navneet Jain=0A * configure/make Makefile debug- Cygwin, Ubuntu - = =0A Navneet Jain, Doug Sprague=0A * SWIG-based OpenSTIL Perl interface = - =0A Joel Wheeler=0A * Performance improvements, Code = cleanup - =0A JW=0A * Bug fix for scan with certain pre-pad= ded Shift vectors -=0A JW=0A * Support for builds on the Cygwin platfor= m - =0A Doug Sprague=0A * Enablement of 'bison' builds (instea= d of byacc)=0A to enable first steps towards multi-threaded parsing - =0A= Doug Sprague=0A=0A=0A=0A=0A=0A =0A____________________________________= ________________________________________________=0AWant to start your own b= usiness?=0ALearn how on Yahoo! Small Business.=0Ahttp://smallbusiness.yahoo= .com/r-index |
|
From: Doug S. <dsp...@gm...> - 2006-11-09 01:14:44
|
Cool Joel!! You are probably planning an announcement on the announce list? Also, we may want to get the word out to Tony on the stil-ug list. On 11/8/06, J. W. <joe...@ya...> wrote: > > I had to do some updates to the release scripts to account for > subversion rather than cvs, so I decided to just get this release out > without any more delay rather than throw too many extra variables into the > release equation. I'll get the reorg's and some other updates into the next > release. This new release has the same structure as the previously released > packages. > > The ChangeLog was a little lacking so I added some info to it to try and > capture everyones contributions based on the developers email list. If I > forgot anything, I apologize... > > The new release (v1.03-1) is now available for download. > > Joel Wheeler > > ----- Original Message ---- > From: Doug Sprague <dsp...@gm...> > To: List for development duscussions <ope...@li... > > > Sent: Wednesday, November 8, 2006 5:35:45 PM > Subject: Re: [Openstil-devel] new release thoughts > > Joel, fine by me if you do this before the release. We don't have > anything major pushing > us to get out there so if things get delayed a bit it should not be a > problem. Guess we would > just need to resync up our working copies once you've done that. > > Just let me know what I need to do, I don't have any pending changes > anyway, so should > be able to start from a brand new checkout. > > Navneet, any thoughts on this. Are you still able to participate? > > Doug > > > On 11/8/06, J. W. <joe...@ya...> wrote: > > > > I'm thinking that with the new release that I'd like to break it up into > > 4 peices: > > 1) source code for the API's > > 2) "static" documentation (doxygen) > > 3) wrappers (perl, others that may come- JNI??) > > 4) testcases > > > > I'd like to rearrange my sandbox to make this all work, and send out the > > release based on this new sandbox structure. Ultimately, once working, the > > SVN repository would be modified to reflect this new structure as well. > > > > Each peice would have a "tools" subdir, with any of the necessary > > scripts that went with that peice (packaging for source, build for wrappers, > > documentation generation for docs, etc) > > > > Questions: > > 1) If I can get this working in the next couple of days, would it be > > worth trying to get this into this release, or should I wait until the next? > > 2) Is this worth tackling? > > > > An alternative might be to just get a release out now without the > > restructuring, and then shortly thereafter put out a new release with the > > rearranged structure. I already have a number of changes in my sandbox that > > I'd like to get into a new release but hesitate to put into the release that > > I'm just about to create- I could roll them into the restructured release if > > we do another quick one in the near future. > > > > > > > > Joel Wheeler > > > > > > > > > > > > ____________________________________________________________________________________ > > Do you Yahoo!? > > Everyone is raving about the all-new Yahoo! Mail. > > http://new.mail.yahoo.com > > > > > > ------------------------------------------------------------------------- > > Using Tomcat but need to do more? Need to support web services, > > security? > > Get stuff done quickly with pre-integrated technology to make your job > > easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > > Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > > > _______________________________________________ > > Openstil-devel mailing list > > Ope...@li... > > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Openstil-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > ------------------------------ > Cheap Talk? Check out<http://us.rd.yahoo.com/mail_us/taglines/postman8/*http://us.rd.yahoo.com/evt=39663/*http://voice.yahoo.com>Yahoo! Messenger's low PC-to-Phone call rates. > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > Openstil-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > |
|
From: J. W. <joe...@ya...> - 2006-11-09 00:53:34
|
I had to do some updates to the release scripts to account for subversion r= ather than cvs, so I decided to just get this release out without any more = delay rather than throw too many extra variables into the release equation.= I'll get the reorg's and some other updates into the next release. This ne= w release has the same structure as the previously released packages. =0A= =0AThe ChangeLog was a little lacking so I added some info to it to try and= capture everyones contributions based on the developers email list. If I f= orgot anything, I apologize...=0A=0AThe new release (v1.03-1) is now availa= ble for download.=0A =0AJoel Wheeler=0A=0A=0A=0A----- Original Message ----= =0AFrom: Doug Sprague <dsp...@gm...>=0ATo: List for development duscu= ssions <ope...@li...>=0ASent: Wednesday, November 8= , 2006 5:35:45 PM=0ASubject: Re: [Openstil-devel] new release thoughts=0A= =0A=0AJoel, fine by me if you do this before the release. We don't have an= ything major pushing=0Aus to get out there so if things get delayed a bit i= t should not be a problem. Guess we would =0Ajust need to resync up our wo= rking copies once you've done that.=0A =0AJust let me know what I need to d= o, I don't have any pending changes anyway, so should=0Abe able to start fr= om a brand new checkout.=0A =0ANavneet, any thoughts on this. Are you stil= l able to participate?=0A =0ADoug=0A=0A =0AOn 11/8/06, J. W. <joel1234567@y= ahoo.com> wrote: =0AI'm thinking that with the new release that I'd like to= break it up into 4 peices:=0A1) source code for the API's =0A2) "static" d= ocumentation (doxygen)=0A3) wrappers (perl, others that may come- JNI??)=0A= 4) testcases=0A=0AI'd like to rearrange my sandbox to make this all work, a= nd send out the release based on this new sandbox structure. Ultimately, on= ce working, the SVN repository would be modified to reflect this new struct= ure as well. =0A=0AEach peice would have a "tools" subdir, with any of the = necessary scripts that went with that peice (packaging for source, build fo= r wrappers, documentation generation for docs, etc)=0A=0AQuestions:=0A1) If= I can get this working in the next couple of days, would it be worth tryin= g to get this into this release, or should I wait until the next?=0A2) Is t= his worth tackling?=0A=0AAn alternative might be to just get a release out = now without the restructuring, and then shortly thereafter put out a new re= lease with the rearranged structure. I already have a number of changes in = my sandbox that I'd like to get into a new release but hesitate to put into= the release that I'm just about to create- I could roll them into the rest= ructured release if we do another quick one in the near future. =0A=0A=0A= =0AJoel Wheeler=0A=0A=0A=0A=0A_____________________________________________= _______________________________________=0ADo you Yahoo!?=0AEveryone is ravi= ng about the all-new Yahoo! Mail.=0Ahttp://new.mail.yahoo.com=0A=0A--------= -----------------------------------------------------------------=0AUsing T= omcat but need to do more? Need to support web services, security?=0AGet st= uff done quickly with pre-integrated technology to make your job easier =0A= Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo= =0Ahttp://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 =0A_______________________________________________=0AOpenstil-dev= el mailing lis...@li...=0Ahttps://lists.sour= ceforge.net/lists/listinfo/openstil-devel=0A=0A=0A=0A----------------------= ---------------------------------------------------=0AUsing Tomcat but need= to do more? Need to support web services, security?=0AGet stuff done quick= ly with pre-integrated technology to make your job easier=0ADownload IBM We= bSphere Application Server v.1.0.1 based on Apache Geronimo=0Ahttp://sel.as= -us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D121642=0A_____= __________________________________________=0AOpenstil-devel mailing list=0A= Ope...@li...=0Ahttps://lists.sourceforge.net/lists/= listinfo/openstil-devel=0A=0A=0A=0A =0A____________________________________= ________________________________________________=0ASponsored Link=0A=0AMort= gage rates near historic lows: =0A$150,000 loan as low as $579/mo. Intro-*T= erms =0Ahttps://www2.nextag.com/ |
|
From: Doug S. <dsp...@gm...> - 2006-11-08 22:35:47
|
Joel, fine by me if you do this before the release. We don't have anything major pushing us to get out there so if things get delayed a bit it should not be a problem. Guess we would just need to resync up our working copies once you've done that. Just let me know what I need to do, I don't have any pending changes anyway, so should be able to start from a brand new checkout. Navneet, any thoughts on this. Are you still able to participate? Doug On 11/8/06, J. W. <joe...@ya...> wrote: > > I'm thinking that with the new release that I'd like to break it up into 4 > peices: > 1) source code for the API's > 2) "static" documentation (doxygen) > 3) wrappers (perl, others that may come- JNI??) > 4) testcases > > I'd like to rearrange my sandbox to make this all work, and send out the > release based on this new sandbox structure. Ultimately, once working, the > SVN repository would be modified to reflect this new structure as well. > > Each peice would have a "tools" subdir, with any of the necessary scripts > that went with that peice (packaging for source, build for wrappers, > documentation generation for docs, etc) > > Questions: > 1) If I can get this working in the next couple of days, would it be worth > trying to get this into this release, or should I wait until the next? > 2) Is this worth tackling? > > An alternative might be to just get a release out now without the > restructuring, and then shortly thereafter put out a new release with the > rearranged structure. I already have a number of changes in my sandbox that > I'd like to get into a new release but hesitate to put into the release that > I'm just about to create- I could roll them into the restructured release if > we do another quick one in the near future. > > > > Joel Wheeler > > > > > > ____________________________________________________________________________________ > Do you Yahoo!? > Everyone is raving about the all-new Yahoo! Mail. > http://new.mail.yahoo.com > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Openstil-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openstil-devel > |
|
From: J. W. <joe...@ya...> - 2006-11-08 22:24:26
|
I'm thinking that with the new release that I'd like to break it up into 4 = peices:=0A1) source code for the API's=0A2) "static" documentation (doxygen= )=0A3) wrappers (perl, others that may come- JNI??)=0A4) testcases=0A=0AI'd= like to rearrange my sandbox to make this all work, and send out the relea= se based on this new sandbox structure. Ultimately, once working, the SVN r= epository would be modified to reflect this new structure as well.=0A=0AEac= h peice would have a "tools" subdir, with any of the necessary scripts that= went with that peice (packaging for source, build for wrappers, documentat= ion generation for docs, etc)=0A=0AQuestions:=0A1) If I can get this workin= g in the next couple of days, would it be worth trying to get this into thi= s release, or should I wait until the next?=0A2) Is this worth tackling?=0A= =0AAn alternative might be to just get a release out now without the restru= cturing, and then shortly thereafter put out a new release with the rearran= ged structure. I already have a number of changes in my sandbox that I'd li= ke to get into a new release but hesitate to put into the release that I'm = just about to create- I could roll them into the restructured release if we= do another quick one in the near future.=0A=0A=0A =0AJoel Wheeler=0A=0A=0A= =0A =0A____________________________________________________________________= ________________=0ADo you Yahoo!?=0AEveryone is raving about the all-new Ya= hoo! Mail.=0Ahttp://new.mail.yahoo.com |
|
From: J. W. <joe...@ya...> - 2006-10-31 14:37:43
|
Doug,=0AThanks for the updates.=0A=0ANavneet,=0AAnything new to report? I t= hink that without some additional modifications that the new Makefile proce= ss might not be ready to be released with the entire package. I am still ex= cited about getting the new configure/make process up and running portably,= however I am not sure that it is quite mature enough yet for this release.= If the new process is used, it will overwrite the older Makefile. And wit= hout the new process running correctly on more platforms then the old proce= ss I think it will cause users (including myself) a number of problems. At= a minimum, the new process should work with a RedHat EL3.0, Ubuntu, and Cy= gwin base installs, without upgrading any packages. Currently there are sti= ll unresolved build problems on a base RHEL3.0 system. Does this sound OK t= o you? If you'd like I can push back the release date a little longer but I= 'd really like to get this out there soon. =0A=0AI'd like to reschedule the= release now for Nov 8.=0A =0AJoel Wheeler=0A=0A----- Original Message ----= =0AFrom: Doug Sprague <dsp...@gm...>=0ATo: List for development duscu= ssions <ope...@li...>=0ASent: Tuesday, October 24, = 2006 12:48:43 AM=0ASubject: Re: [Openstil-devel] new release?=0A=0AGuys, = =0A=0AI have installed changes for the switch to using bison instead of bya= cc.=0ANote, that the default is still to use byacc but can turn on bison in= the =0Amakefile by specifying YACC=3Dbison at the top.=0A=0AI have tested = on Ubuntu and Cygwin and all seem to work fine, still need to =0A=0Atest on= AIX but don't seem to have an AIX system with svn on it. Will work =0Aon = getting that done.=0A=0AI did do some performance tests between using byacc= and bison to build the=0Aexecutable and it seems there is no noticable dif= ference between the two=0A=0Aapproaches. Both close to 10 seconds to proce= ss a 60MB STIL file through=0Athe stileval program.=0A=0AOnce we test this = on an AIX system, I guess we could make the default to be=0Abison as the pa= rser generator.=0A=0A=0AThe last thing, this is just the first step in tryi= ng to get to the point of having=0Aa reentrant parser so that we can parse = multiple stil files at once with the parser.=0AThat will be next on the age= nda, but not for this next release.=0A=0A=0ANavneet, =0A=0AAny progress on = the configure stuff. One issue there is that I believe your stuff=0Awill o= verwrite the existing Makefile when it runs. If that is the case, we need = to be careful about placing that support in a release until it builds corre= ctly on all =0A=0Aplatforms and handles what we have today in the current M= akefile. =0A=0ALet us know.=0A=0AThanks,=0ADoug=0A=0A=0AOn 10/16/06, J. W.= <=0Aj...@ya...> wrote:Doug,=0AThe 23rd works for me.=0A=0A--- D= oug Sprague <=0Ad...@gm...> wrote:=0A=0A> Joel,=0A>=0A> I got very = booked last week, and could not make=0A> headway, also with issues of=0A>= =0A> reloading a new computer, I had to retrieve my old=0A=0A> files I had = worked on in=0A> my older computer.=0A>=0A> I have all the stuff I need now= , and will try to=0A> make progress. Maybe we=0A> can push=0A> this out to= 10/23 (a week) for the release, and I=0A=0A> will try to make better=0A> p= rogress this week. If I don't get there this week,=0A> then I would say do = the=0A> release without the changes=0A> to move to bison.=0A>=0A> Navneet,= =0A>=0A=0A> Does this work for you??=0A>=0A> Thanks,=0A> Doug=0A>=0A> On 10= /7/06, navneet jain <nav...@ya...>=0A> wrote:=0A> >=0A> > I will = try in next few days if I can get the=0A=0A> Makefile=0A> > process fixed.= =0A> >=0A> > navneet=0A> >=0A> >=0A> > --- Doug Sprague <dsp...@gm...= > wrote:=0A> >=0A=0A> > > Joel,=0A> > >=0A> > > I agree, time for a new rel= ease. I have=0A> completed=0A> > > part of the switch to=0A> > > bison (fro= m byacc)=0A> > > but not totally there yet. Then I had to switch=0A=0A> > = > computers (new one I got)=0A> > > but need to get=0A> > > my state of cha= nges off that old hard drive and=0A> > > finish them up. Let me=0A> > > sh= oot to get more=0A=0A> > > progress done on this by next Tue/Wed. If I=0A> = don't=0A> > > get that done, then we'll=0A> > > save this change=0A> > > fo= r the next release.=0A> > >=0A> > > Navneet,=0A=0A> > >=0A> > > I think you= were going to make some updates to=0A> the=0A> > > build process such that= =0A> > > it configure could be used without requiring new=0A> > > packages.= Is that done=0A=0A> > > yet?=0A> > >=0A> > >=0A> > > Thanks for pushing = us along Joel, good plan.=0A> > >=0A> > > Regards,=0A> > > Doug=0A> > >=0A>= > > On 10/6/06, J. W. <=0Aj...@ya...> wrote:=0A> > > >=0A> > > = > Fellow developers-=0A> > > >=0A> > > > I think it is nearing time for ope= nstil=0A=0A> release=0A> > > > v1.0.3. There have been significant=0A> impr= ovements=0A> > > in=0A> > > > functionality and features added since v1.0.2= ,=0A> and=0A> > > > it's time to get those packaged up and=0A=0A> available= =0A> > > for=0A> > > > download.=0A> > > >=0A> > > > I would like to shoot = for a release date of=0A> Oct=0A> > > 15th.=0A> > > > Is there work outstan= ding that anyone would=0A=0A> like=0A> > > to=0A> > > > get pulled into thi= s release? I can move the=0A> date=0A> > > if=0A> > > > needed.=0A> > > >= =0A> > > > Navneet- are you all set with the makefile=0A=0A> updates=0A> > = > > being released? Or do you still have some work=0A> > > planned=0A> > > = > there prior to release?=0A> > > >=0A> > > > Doug- did you want to pull th= e parser changes=0A=0A> into=0A> > > > this release? Or do you want me to w= ait on=0A> those=0A> > > until=0A> > > > the next version?=0A> > > >=0A> > = > > Thanks!=0A> > > >=0A=0A> > > > Joel Wheeler=0A> > > >=0A> > > >=0A> ___= _______________________________________________=0A> > > > Do You Yahoo!?=0A= > > > > Tired of spam? Yahoo! Mail has the best spam=0A=0A> > > protection= around=0A> > > > http://mail.yahoo.com=0A> > > >=0A> > > >=0A> > >=0A> >= =0A>=0A--------------------------------------------------------------------= -----=0A=0A> > > > Take Surveys. Earn Cash. Influence the Future=0A> of=0A>= > > IT=0A> > > > Join SourceForge.net's Techsay panel and=0A> you'll=0A> >= > get the chance to share=0A=0A> > > > your=0A> > > > opinions on IT & bus= iness topics through brief=0A> > > surveys -- and earn cash=0A> > > >=0A> >= >=0A> >=0A>=0A=0Ahttp://www.techsay.com/default.php?page=3Djoin.php&p=3Dso= urceforge&CID=3DDEVDEV=0A> > > >=0A> ______________________________________= _________=0A> > > > Openstil-devel mailing list=0A> > > > =0AOpenstil-devel= @lists.sourceforge.net=0A> > > >=0A> > >=0A> >=0A>=0A=0Ahttps://lists.sourc= eforge.net/lists/listinfo/openstil-devel=0A> > > >=0A> > > >=0A> >=0A>=0A--= -----------------------------------------------------------------------=0A>= > > Take Surveys. Earn Cash. Influence the Future of=0A=0A> IT=0A> > > Joi= n SourceForge.net's Techsay panel and you'll=0A> get=0A> > > the chance to = share your=0A> > > opinions on IT & business topics through brief=0A> > > s= urveys -- and earn cash=0A=0A> > >=0A> >=0A>=0Ahttp://www.techsay.com/defau= lt.php?page=3Djoin.php&p=3Dsourceforge&CID=3DDEVDEV>=0A=0A> > _____________= __________________________________=0A> > > Openstil-devel mailing list=0A> = > > Ope...@li...=0A=0A> > >=0A> >=0A>=0Ahttps://lis= ts.sourceforge.net/lists/listinfo/openstil-devel=0A> > >=0A> >=0A> >=0A> > = __________________________________________________=0A=0A> > Do You Yahoo!?= =0A> > Tired of spam? Yahoo! Mail has the best spam=0A> protection around= =0A> > http://mail.yahoo.com=0A> >=0A> >=0A>=0A=0A-------------------------= ------------------------------------------------=0A> > Take Surveys. Earn C= ash. Influence the Future of=0A> IT=0A> > Join SourceForge.net's Techsay pa= nel and you'll=0A> get the chance to share=0A=0A> > your=0A> > opinions on = IT & business topics through brief=0A> surveys -- and earn cash=0A> >=0A>= =0A=0Ahttp://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CI= D=3DDEVDEV=0A> > _______________________________________________=0A> > Open= stil-devel mailing list=0A> > =0AO...@li...=0A> >= =0A>=0Ahttps://lists.sourceforge.net/lists/listinfo/openstil-devel=0A> >=0A= > >=0A=0A------------------------------------------------------------------= -------=0A> Using Tomcat but need to do more? Need to support=0A> web servi= ces, security?=0A> Get stuff done quickly with pre-integrated=0A=0A> techno= logy to make your job easier=0A> Download IBM WebSphere Application Server = v.1.0.1=0A> based on Apache Geronimo=0A>=0A=0Ahttp://sel.as-us.falkag.net/s= el?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D121642>=0A____________________= ___________________________=0A> Openstil-devel mailing list=0A> =0AOpenstil= -de...@li...=0A>=0Ahttps://lists.sourceforge.net/lists/list= info/openstil-devel=0A>=0A=0A=0AJoel Wheeler=0A=0A=0A______________________= ____________________________=0ADo You Yahoo!?=0ATired of spam? Yahoo! Mail= has the best spam protection around=0Ahttp://mail.yahoo.com=0A=0A---------= ----------------------------------------------------------------=0A=0AUsing= Tomcat but need to do more? Need to support web services, security?=0AGet = stuff done quickly with pre-integrated technology to make your job easier= =0ADownload IBM WebSphere Application Server v.1.0.1 based on Apache Geroni= mo=0A=0Ahttp://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057= &dat=3D121642=0A_______________________________________________=0A=0AOpenst= il-devel mailing lis...@li...=0Ahttps://list= s.sourceforge.net/lists/listinfo/openstil-devel=0A=0A=0A=0A=0A-------------= ------------------------------------------------------------=0AUsing Tomcat= but need to do more? Need to support web services, security?=0AGet stuff d= one quickly with pre-integrated technology to make your job easier=0ADownlo= ad IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo=0Ahttp= ://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D12164= 2=0A_______________________________________________=0AOpenstil-devel mailin= g lis...@li...=0Ahttps://lists.sourceforge.n= et/lists/listinfo/openstil-devel=0A=0A=0A=0A=0A=0A=0A |
|
From: Doug S. <dsp...@gm...> - 2006-10-26 13:38:16
|
Joel,
I agree, good place for employing OO concepts here and cleaning up the code.
The only concern I ever have with virtual functions is performance, and I
only worry
about that when those functions are very low level functions which get
called a lot.
I don't think that should be a big issue here at all, but you could probably
keep an
eye on that if you started out by making some of the lower level write
method virtual
and ensure we don't lose significant performance. I would expect to lose
some
performance but certainly a good trade off for cleaner code overall.
I say go for it.
Doug
On 10/26/06, J. W. <joe...@ya...> wrote:
>
> Starting off my day with some STIL thoughts...
>
> I was thinking that maybe we should change the write() methods in the STIL
> classes to be a virtual method, to make writing STIL data much easier- it
> seems that it would be the perfect candidate for such a change.
> Currently, you need to iterate through the data, checking the type and
> then casting and then calling write(). For example (pardon my syntax
> mistakes):
>
> Iterator stilIter = stil->iterator();
> STILEntity* ent;
> while (stilIter.isValid()) {
> ent = &(*stilIter);
> if (ent->type() == SIGNALS) {
> // cast as signal, then write- otherwise it writes out a STILEntity
> (STILSignals*)ent->write();
> }
> else if (ent->type() == SIGNALGROUPS) {
> // cast as signalgroups block, then write- otherwise it writes out a
> STILEntity
>
> (STILSignalGroups*)ent->write();
> }
> // etc.... for all other blocks ....
> ++stilIter;
> }
>
> However, with virtual write() methods, this could be implemented more
> simply as something like:
>
> Iterator stilIter = stil->iterator();
>
> STILEntity * ent;
>
> while (stilIter.isValid()) {
>
> ent = &(*stilIter);
>
> ent->write();
>
> ++stilIter;
>
> }
>
> Additionally, many of the exisitng write() functions could be re-written
> and simplified to take advantage of the virtual methods rather than doing
> all of the type-checking/casting.
>
> Does this seem like a good idea? Any disadvantages?
>
>
> Joel Wheeler
>
>
>
>
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Openstil-devel mailing list
> Ope...@li...
> https://lists.sourceforge.net/lists/listinfo/openstil-devel
>
|
|
From: J. W. <joe...@ya...> - 2006-10-26 13:29:44
|
Starting off my day with some STIL thoughts...=0A=0AI was thinking that may=
be we should change the write() methods in the STIL classes to be a virtual=
method, to make writing STIL data much easier- it seems that it would be t=
he perfect candidate for such a change. =0ACurrently, you need to iterate t=
hrough the data, checking the type and then casting and then calling write(=
). For example (pardon my syntax mistakes):=0A=0AIterator stilIter =3D stil=
->iterator();=0ASTILEntity* ent;=0Awhile (stilIter.isValid()) {=0A ent =3D=
&(*stilIter);=0A if (ent->type() =3D=3D SIGNALS) {=0A // cast as signa=
l, then write- otherwise it writes out a STILEntity=0A (STILSignals*)ent=
->write();=0A }=0A else if (ent->type() =3D=3D SIGNALGROUPS) {=0A // c=
ast as signalgroups block, then write- otherwise it writes out a STILEntity=
=0A=0A (STILSignalGroups*)ent->write();=0A }=0A // etc.... for all oth=
er blocks ....=0A ++stilIter;=0A}=0A=0AHowever, with virtual write() metho=
ds, this could be implemented more simply as something like:=0A=0AIterator =
stilIter =3D stil->iterator();=0A=0ASTILEntity * ent;=0A=0Awhile (stilIter.=
isValid()) {=0A=0A ent =3D &(*stilIter);=0A=0A ent->write();=0A=0A ++sti=
lIter;=0A=0A}=0A=0AAdditionally, many of the exisitng write() functions cou=
ld be re-written and simplified to take advantage of the virtual methods ra=
ther than doing all of the type-checking/casting.=0A=0ADoes this seem like =
a good idea? Any disadvantages?=0A=0A =0AJoel Wheeler=0A=0A=0A=0A
|
|
From: J. W. <joe...@ya...> - 2006-10-26 13:20:10
|
FYI- There seems to be some problem updating the regression & build informa= tion on the openstil website. ssh seems to be flaky- sometimes it will work= , sometimes not. I am getting this error in the logs:=0A=0Assh_exchange_ide= ntification: Connection closed by remote host=0A =0AJoel Wheeler=0A=0A=0A= =0A |
|
From: Doug S. <dsp...@gm...> - 2006-10-24 04:56:40
|
Guys, I have installed changes for the switch to using bison instead of byacc. Note, that the default is still to use byacc but can turn on bison in the makefile by specifying YACC=bison at the top. I have tested on Ubuntu and Cygwin and all seem to work fine, still need to test on AIX but don't seem to have an AIX system with svn on it. Will work on getting that done. I did do some performance tests between using byacc and bison to build the executable and it seems there is no noticable difference between the two approaches. Both close to 10 seconds to process a 60MB STIL file through the stileval program. Once we test this on an AIX system, I guess we could make the default to be bison as the parser generator. The last thing, this is just the first step in trying to get to the point of having a reentrant parser so that we can parse multiple stil files at once with the parser. That will be next on the agenda, but not for this next release. Navneet, Any progress on the configure stuff. One issue there is that I believe your stuff will overwrite the existing Makefile when it runs. If that is the case, we need to be careful about placing that support in a release until it builds correctly on all platforms and handles what we have today in the current Makefile. Let us know. Thanks, Doug On 10/16/06, J. W. <joe...@ya...> wrote: > > Doug, > The 23rd works for me. > > --- Doug Sprague <dsp...@gm...> wrote: > > > Joel, > > > > I got very booked last week, and could not make > > headway, also with issues of > > > > reloading a new computer, I had to retrieve my old > > files I had worked on in > > my older computer. > > > > I have all the stuff I need now, and will try to > > make progress. Maybe we > > can push > > this out to 10/23 (a week) for the release, and I > > will try to make better > > progress this week. If I don't get there this week, > > then I would say do the > > release without the changes > > to move to bison. > > > > Navneet, > > > > Does this work for you?? > > > > Thanks, > > Doug > > > > On 10/7/06, navneet jain <nav...@ya...> > > wrote: > > > > > > I will try in next few days if I can get the > > Makefile > > > process fixed. > > > > > > navneet > > > > > > > > > --- Doug Sprague <dsp...@gm...> wrote: > > > > > > > Joel, > > > > > > > > I agree, time for a new release. I have > > completed > > > > part of the switch to > > > > bison (from byacc) > > > > but not totally there yet. Then I had to switch > > > > computers (new one I got) > > > > but need to get > > > > my state of changes off that old hard drive and > > > > finish them up. Let me > > > > shoot to get more > > > > progress done on this by next Tue/Wed. If I > > don't > > > > get that done, then we'll > > > > save this change > > > > for the next release. > > > > > > > > Navneet, > > > > > > > > I think you were going to make some updates to > > the > > > > build process such that > > > > it configure could be used without requiring new > > > > packages. Is that done > > > > yet? > > > > > > > > > > > > Thanks for pushing us along Joel, good plan. > > > > > > > > Regards, > > > > Doug > > > > > > > > On 10/6/06, J. W. <joe...@ya...> wrote: > > > > > > > > > > Fellow developers- > > > > > > > > > > I think it is nearing time for openstil > > release > > > > > v1.0.3. There have been significant > > improvements > > > > in > > > > > functionality and features added since v1.0.2, > > and > > > > > it's time to get those packaged up and > > available > > > > for > > > > > download. > > > > > > > > > > I would like to shoot for a release date of > > Oct > > > > 15th. > > > > > Is there work outstanding that anyone would > > like > > > > to > > > > > get pulled into this release? I can move the > > date > > > > if > > > > > needed. > > > > > > > > > > Navneet- are you all set with the makefile > > updates > > > > > being released? Or do you still have some work > > > > planned > > > > > there prior to release? > > > > > > > > > > Doug- did you want to pull the parser changes > > into > > > > > this release? Or do you want me to wait on > > those > > > > until > > > > > the next version? > > > > > > > > > > Thanks! > > > > > > > > > > Joel Wheeler > > > > > > > > > > > > __________________________________________________ > > > > > Do You Yahoo!? > > > > > Tired of spam? Yahoo! Mail has the best spam > > > > protection around > > > > > http://mail.yahoo.com > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > > Take Surveys. Earn Cash. Influence the Future > > of > > > > IT > > > > > Join SourceForge.net's Techsay panel and > > you'll > > > > get the chance to share > > > > > your > > > > > opinions on IT & business topics through brief > > > > surveys -- and earn cash > > > > > > > > > > > > > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > > > > > _______________________________________________ > > > > > Openstil-devel mailing list > > > > > Ope...@li... > > > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > Take Surveys. Earn Cash. Influence the Future of > > IT > > > > Join SourceForge.net's Techsay panel and you'll > > get > > > > the chance to share your > > > > opinions on IT & business topics through brief > > > > surveys -- and earn cash > > > > > > > > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV> > > > _______________________________________________ > > > > Openstil-devel mailing list > > > > Ope...@li... > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > > > > > > > > > > __________________________________________________ > > > Do You Yahoo!? > > > Tired of spam? Yahoo! Mail has the best spam > > protection around > > > http://mail.yahoo.com > > > > > > > > > ------------------------------------------------------------------------- > > > Take Surveys. Earn Cash. Influence the Future of > > IT > > > Join SourceForge.net's Techsay panel and you'll > > get the chance to share > > > your > > > opinions on IT & business topics through brief > > surveys -- and earn cash > > > > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > _______________________________________________ > > > Openstil-devel mailing list > > > Ope...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > > > > ------------------------------------------------------------------------- > > Using Tomcat but need to do more? Need to support > > web services, security? > > Get stuff done quickly with pre-integrated > > technology to make your job easier > > Download IBM WebSphere Application Server v.1.0.1 > > based on Apache Geronimo > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642> > _______________________________________________ > > Openstil-devel mailing list > > Ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > > Joel Wheeler > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Openstil-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openstil-devel > |
|
From: J. W. <joe...@ya...> - 2006-10-16 13:56:31
|
Doug, The 23rd works for me. --- Doug Sprague <dsp...@gm...> wrote: > Joel, > > I got very booked last week, and could not make > headway, also with issues of > > reloading a new computer, I had to retrieve my old > files I had worked on in > my older computer. > > I have all the stuff I need now, and will try to > make progress. Maybe we > can push > this out to 10/23 (a week) for the release, and I > will try to make better > progress this week. If I don't get there this week, > then I would say do the > release without the changes > to move to bison. > > Navneet, > > Does this work for you?? > > Thanks, > Doug > > On 10/7/06, navneet jain <nav...@ya...> > wrote: > > > > I will try in next few days if I can get the > Makefile > > process fixed. > > > > navneet > > > > > > --- Doug Sprague <dsp...@gm...> wrote: > > > > > Joel, > > > > > > I agree, time for a new release. I have > completed > > > part of the switch to > > > bison (from byacc) > > > but not totally there yet. Then I had to switch > > > computers (new one I got) > > > but need to get > > > my state of changes off that old hard drive and > > > finish them up. Let me > > > shoot to get more > > > progress done on this by next Tue/Wed. If I > don't > > > get that done, then we'll > > > save this change > > > for the next release. > > > > > > Navneet, > > > > > > I think you were going to make some updates to > the > > > build process such that > > > it configure could be used without requiring new > > > packages. Is that done > > > yet? > > > > > > > > > Thanks for pushing us along Joel, good plan. > > > > > > Regards, > > > Doug > > > > > > On 10/6/06, J. W. <joe...@ya...> wrote: > > > > > > > > Fellow developers- > > > > > > > > I think it is nearing time for openstil > release > > > > v1.0.3. There have been significant > improvements > > > in > > > > functionality and features added since v1.0.2, > and > > > > it's time to get those packaged up and > available > > > for > > > > download. > > > > > > > > I would like to shoot for a release date of > Oct > > > 15th. > > > > Is there work outstanding that anyone would > like > > > to > > > > get pulled into this release? I can move the > date > > > if > > > > needed. > > > > > > > > Navneet- are you all set with the makefile > updates > > > > being released? Or do you still have some work > > > planned > > > > there prior to release? > > > > > > > > Doug- did you want to pull the parser changes > into > > > > this release? Or do you want me to wait on > those > > > until > > > > the next version? > > > > > > > > Thanks! > > > > > > > > Joel Wheeler > > > > > > > > > __________________________________________________ > > > > Do You Yahoo!? > > > > Tired of spam? Yahoo! Mail has the best spam > > > protection around > > > > http://mail.yahoo.com > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > Take Surveys. Earn Cash. Influence the Future > of > > > IT > > > > Join SourceForge.net's Techsay panel and > you'll > > > get the chance to share > > > > your > > > > opinions on IT & business topics through brief > > > surveys -- and earn cash > > > > > > > > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > > > _______________________________________________ > > > > Openstil-devel mailing list > > > > Ope...@li... > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > > > > > > > > ------------------------------------------------------------------------- > > > Take Surveys. Earn Cash. Influence the Future of > IT > > > Join SourceForge.net's Techsay panel and you'll > get > > > the chance to share your > > > opinions on IT & business topics through brief > > > surveys -- and earn cash > > > > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV> > > _______________________________________________ > > > Openstil-devel mailing list > > > Ope...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > > > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam > protection around > > http://mail.yahoo.com > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of > IT > > Join SourceForge.net's Techsay panel and you'll > get the chance to share > > your > > opinions on IT & business topics through brief > surveys -- and earn cash > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > Openstil-devel mailing list > > Ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support > web services, security? > Get stuff done quickly with pre-integrated > technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 > based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642> _______________________________________________ > Openstil-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openstil-devel > Joel Wheeler __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Doug S. <dsp...@gm...> - 2006-10-16 03:34:29
|
Joel, I got very booked last week, and could not make headway, also with issues of reloading a new computer, I had to retrieve my old files I had worked on in my older computer. I have all the stuff I need now, and will try to make progress. Maybe we can push this out to 10/23 (a week) for the release, and I will try to make better progress this week. If I don't get there this week, then I would say do the release without the changes to move to bison. Navneet, Does this work for you?? Thanks, Doug On 10/7/06, navneet jain <nav...@ya...> wrote: > > I will try in next few days if I can get the Makefile > process fixed. > > navneet > > > --- Doug Sprague <dsp...@gm...> wrote: > > > Joel, > > > > I agree, time for a new release. I have completed > > part of the switch to > > bison (from byacc) > > but not totally there yet. Then I had to switch > > computers (new one I got) > > but need to get > > my state of changes off that old hard drive and > > finish them up. Let me > > shoot to get more > > progress done on this by next Tue/Wed. If I don't > > get that done, then we'll > > save this change > > for the next release. > > > > Navneet, > > > > I think you were going to make some updates to the > > build process such that > > it configure could be used without requiring new > > packages. Is that done > > yet? > > > > > > Thanks for pushing us along Joel, good plan. > > > > Regards, > > Doug > > > > On 10/6/06, J. W. <joe...@ya...> wrote: > > > > > > Fellow developers- > > > > > > I think it is nearing time for openstil release > > > v1.0.3. There have been significant improvements > > in > > > functionality and features added since v1.0.2, and > > > it's time to get those packaged up and available > > for > > > download. > > > > > > I would like to shoot for a release date of Oct > > 15th. > > > Is there work outstanding that anyone would like > > to > > > get pulled into this release? I can move the date > > if > > > needed. > > > > > > Navneet- are you all set with the makefile updates > > > being released? Or do you still have some work > > planned > > > there prior to release? > > > > > > Doug- did you want to pull the parser changes into > > > this release? Or do you want me to wait on those > > until > > > the next version? > > > > > > Thanks! > > > > > > Joel Wheeler > > > > > > __________________________________________________ > > > Do You Yahoo!? > > > Tired of spam? Yahoo! Mail has the best spam > > protection around > > > http://mail.yahoo.com > > > > > > > > > ------------------------------------------------------------------------- > > > Take Surveys. Earn Cash. Influence the Future of > > IT > > > Join SourceForge.net's Techsay panel and you'll > > get the chance to share > > > your > > > opinions on IT & business topics through brief > > surveys -- and earn cash > > > > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > _______________________________________________ > > > Openstil-devel mailing list > > > Ope...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get > > the chance to share your > > opinions on IT & business topics through brief > > surveys -- and earn cash > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV> > _______________________________________________ > > Openstil-devel mailing list > > Ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Openstil-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openstil-devel > |
|
From: navneet j. <nav...@ya...> - 2006-10-07 14:52:50
|
I will try in next few days if I can get the Makefile process fixed. navneet --- Doug Sprague <dsp...@gm...> wrote: > Joel, > > I agree, time for a new release. I have completed > part of the switch to > bison (from byacc) > but not totally there yet. Then I had to switch > computers (new one I got) > but need to get > my state of changes off that old hard drive and > finish them up. Let me > shoot to get more > progress done on this by next Tue/Wed. If I don't > get that done, then we'll > save this change > for the next release. > > Navneet, > > I think you were going to make some updates to the > build process such that > it configure could be used without requiring new > packages. Is that done > yet? > > > Thanks for pushing us along Joel, good plan. > > Regards, > Doug > > On 10/6/06, J. W. <joe...@ya...> wrote: > > > > Fellow developers- > > > > I think it is nearing time for openstil release > > v1.0.3. There have been significant improvements > in > > functionality and features added since v1.0.2, and > > it's time to get those packaged up and available > for > > download. > > > > I would like to shoot for a release date of Oct > 15th. > > Is there work outstanding that anyone would like > to > > get pulled into this release? I can move the date > if > > needed. > > > > Navneet- are you all set with the makefile updates > > being released? Or do you still have some work > planned > > there prior to release? > > > > Doug- did you want to pull the parser changes into > > this release? Or do you want me to wait on those > until > > the next version? > > > > Thanks! > > > > Joel Wheeler > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam > protection around > > http://mail.yahoo.com > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of > IT > > Join SourceForge.net's Techsay panel and you'll > get the chance to share > > your > > opinions on IT & business topics through brief > surveys -- and earn cash > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > Openstil-devel mailing list > > Ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/openstil-devel > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get > the chance to share your > opinions on IT & business topics through brief > surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV> _______________________________________________ > Openstil-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openstil-devel > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |