amcl-users Mailing List for GNOME-Mud : mudding for X (Page 2)
Status: Beta
Brought to you by:
lobbin
You can subscribe to this list here.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
|
Feb
|
Mar
(4) |
Apr
(2) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
| 2002 |
Jan
|
Feb
|
Mar
(1) |
Apr
(16) |
May
(5) |
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
(4) |
Dec
|
| 2003 |
Jan
|
Feb
(3) |
Mar
|
Apr
(1) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Mattias H. <mh...@sd...> - 2002-04-15 09:37:45
|
Well... the thing I did is that I changed some code is the file regex.h this is the old code /* * For benefit of old compilers, we offer <sys/types.h> the option of * overriding the `void' type used to declare nonexistent return types. */ #ifdef __REG_VOID_T typedef __REG_VOID_T re_void; #else typedef void re_void; #endif and I changed it to /* * For benefit of old compilers, we offer <sys/types.h> the option of * overriding the `void' type used to declare nonexistent return types. */ #ifdef __REG_VOID_T /* typedef __REG_VOID_T re_void; */ typedef void re_void; #else typedef void re_void; #endif and it worked... now it is only the error you see below that I cant fix and no, I cant find TclReFree in data.c what to do? MvH Mattias "Nallen" Holmstr=F6m On 15 Apr 2002, Robin Ericsson wrote: > On Mon, 2002-04-15 at 08:06, Mattias Holmstroem wrote: > > lol, got those errors and warnings away. > > Nice, what did you do? > > > Command: make -s > > > > Making all in doc > > Making all in C > > Making all in intl > > Making all in po > > Making all in src > > Undefined first referenced > > symbol in file > > dbopen > > /local/libraries/gnome-libs/1.2.3/lib/libgnome.so > > TclReFree data.o > > ld: fatal: Symbol referencing errors. No output written to gnome-mud > > collect2: ld returned 1 exit status > > make[2]: *** [gnome-mud] Error 1 > > make[1]: *** [all-recursive] Error 1 > > make: *** [all] Error 2 > > Hmm, TclReFree is no symbol I added to data.c. > > Can you find TclReFree in data.c? > > -- > Robin Ericsson <lobbin at localhost dot nu> > > "The secret of flying is to throw yourself at the ground, and miss." > -- Douglas Adams > > |
|
From: Robin E. <lo...@lo...> - 2002-04-15 07:47:32
|
On Mon, 2002-04-15 at 08:06, Mattias Holmstroem wrote:
> lol, got those errors and warnings away.
Nice, what did you do?
> Command: make -s
>
> Making all in doc
> Making all in C
> Making all in intl
> Making all in po
> Making all in src
> Undefined first referenced
> symbol in file
> dbopen
> /local/libraries/gnome-libs/1.2.3/lib/libgnome.so
> TclReFree data.o
> ld: fatal: Symbol referencing errors. No output written to gnome-mud
> collect2: ld returned 1 exit status
> make[2]: *** [gnome-mud] Error 1
> make[1]: *** [all-recursive] Error 1
> make: *** [all] Error 2
Hmm, TclReFree is no symbol I added to data.c.
Can you find TclReFree in data.c?
--
Robin Ericsson <lobbin at localhost dot nu>
"The secret of flying is to throw yourself at the ground, and miss."
-- Douglas Adams
|
|
From: Mattias H. <mh...@sd...> - 2002-04-15 06:06:38
|
lol, got those errors and warnings away. Now I get this... Command: make -s Making all in doc Making all in C Making all in intl Making all in po Making all in src Undefined first referenced symbol in file dbopen /local/libraries/gnome-libs/1.2.3/lib/libgnome.so TclReFree data.o ld: fatal: Symbol referencing errors. No output written to gnome-mud collect2: ld returned 1 exit status make[2]: *** [gnome-mud] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 Exit 2 How do I fix this? MvH Mattias "Nallen" Holmstr=F6m On Sun, 14 Apr 2002, Jordi Mallach wrote: > [If you're subscribed to amcl-users, tell me and I won't Cc: you] > > On Sun, Apr 14, 2002 at 09:29:00PM +0200, Mattias Holmstroem wrote: > > gnome-mud-0.9.0.tar.gz > > Ok. > > > In file included from data.c:24: > > regex.h:145: parse error before `re_void' > > regex.h:145: warning: type defaults to `int' in declaration of `re_void= ' > > regex.h:145: warning: data definition has no type or storage class > > regex.h:314: parse error before `_ANSI_ARGS_' > > regex.h:323: parse error before `_ANSI_ARGS_' > > regex.h:326: parse error before `_ANSI_ARGS_' > > data.c: In function `match_line': > > data.c:147: warning: implicit declaration of function `regcomp' > > data.c:148: warning: implicit declaration of function `regexec' > > data.c:149: warning: implicit declaration of function `TclReFree' > > I have no SunOS box, by luck, so I can't really know what's going on > there. Can you grep recursively for "regcomp" in all files in > /usr/include (or wherever includes are in Solaris)? > > Thanks, > Jordi > -- > Jordi Mallach P=E9rez || jo...@pu... || Rediscovering Freed= om, > aka Oskuro in || jo...@si... || Using Debian GNU/Linu= x > Reinos de Leyenda || jo...@de... || http://debian.org > > http://sindominio.net GnuPG public information: pub 1024D/917A225E > telnet pusa.uv.es 23 73ED 4244 FD43 5886 20AC 2644 2584 94BA 917A 225E > |
|
From: Mattias H. <mh...@sd...> - 2002-04-15 05:43:32
|
This is what I get when using grep in include dir... Command: grep -i -n -w regcomp /local/app/include/*.* grep: can't open /local/app/include/glib.h grep: can't open /local/app/include/gmodule.h grep: can't open /local/app/include/gnomesupport.h /local/app/include/regcustom.h:78:#define __REG_NOFRONT /* don't want regcomp() and regexec() */ /local/app/include/regex.h:51: * declarations of the "front end" functions, regcomp() and regexec(), /local/app/include/regex.h:118:#define __REG_NOFRONT /* don't want regcomp() and regexec() */ /local/app/include/regex.h:209: ^ int regcomp(regex_t *, __REG_CONST char *, int); /local/app/include/regex.h:311:int regcomp _ANSI_ARGS_((regex_t *, __REG_CONST char *, int)); grep: can't open /local/app/include/rrd.h Exit 2 Now what? How do I subscribe to this list? MvH Mattias "Nallen" Holmstr=F6m On Sun, 14 Apr 2002, Jordi Mallach wrote: > [If you're subscribed to amcl-users, tell me and I won't Cc: you] > > On Sun, Apr 14, 2002 at 09:29:00PM +0200, Mattias Holmstroem wrote: > > gnome-mud-0.9.0.tar.gz > > Ok. > > > In file included from data.c:24: > > regex.h:145: parse error before `re_void' > > regex.h:145: warning: type defaults to `int' in declaration of `re_void= ' > > regex.h:145: warning: data definition has no type or storage class > > regex.h:314: parse error before `_ANSI_ARGS_' > > regex.h:323: parse error before `_ANSI_ARGS_' > > regex.h:326: parse error before `_ANSI_ARGS_' > > data.c: In function `match_line': > > data.c:147: warning: implicit declaration of function `regcomp' > > data.c:148: warning: implicit declaration of function `regexec' > > data.c:149: warning: implicit declaration of function `TclReFree' > > I have no SunOS box, by luck, so I can't really know what's going on > there. Can you grep recursively for "regcomp" in all files in > /usr/include (or wherever includes are in Solaris)? > > Thanks, > Jordi > -- > Jordi Mallach P=E9rez || jo...@pu... || Rediscovering Freed= om, > aka Oskuro in || jo...@si... || Using Debian GNU/Linu= x > Reinos de Leyenda || jo...@de... || http://debian.org > > http://sindominio.net GnuPG public information: pub 1024D/917A225E > telnet pusa.uv.es 23 73ED 4244 FD43 5886 20AC 2644 2584 94BA 917A 225E > |
|
From: Jordi M. <jo...@si...> - 2002-04-14 21:24:54
|
[If you're subscribed to amcl-users, tell me and I won't Cc: you] On Sun, Apr 14, 2002 at 09:29:00PM +0200, Mattias Holmstroem wrote: > gnome-mud-0.9.0.tar.gz Ok. > In file included from data.c:24: > regex.h:145: parse error before `re_void' > regex.h:145: warning: type defaults to `int' in declaration of `re_void' > regex.h:145: warning: data definition has no type or storage class > regex.h:314: parse error before `_ANSI_ARGS_' > regex.h:323: parse error before `_ANSI_ARGS_' > regex.h:326: parse error before `_ANSI_ARGS_' > data.c: In function `match_line': > data.c:147: warning: implicit declaration of function `regcomp' > data.c:148: warning: implicit declaration of function `regexec' > data.c:149: warning: implicit declaration of function `TclReFree' I have no SunOS box, by luck, so I can't really know what's going on there. Can you grep recursively for "regcomp" in all files in /usr/include (or wherever includes are in Solaris)? Thanks, Jordi --=20 Jordi Mallach P=E9rez || jo...@pu... || Rediscovering Freedom, aka Oskuro in || jo...@si... || Using Debian GNU/Linux Reinos de Leyenda || jo...@de... || http://debian.org http://sindominio.net GnuPG public information: pub 1024D/917A225E= =20 telnet pusa.uv.es 23 73ED 4244 FD43 5886 20AC 2644 2584 94BA 917A 225E |
|
From: Mattias H. <mh...@sd...> - 2002-04-14 19:29:21
|
gnome-mud-0.9.0.tar.gz MvH Mattias "Nallen" Holmstr=F6m On Sun, 14 Apr 2002, Jordi Mallach wrote: > On Sun, Apr 14, 2002 at 05:02:16PM +0200, Mattias Holmstroem wrote: > > regex.h:145: parse error before `re_void' > > How do I fix this? > > What version of gnome-mud is this? > > > OS =3D SunOS magna 5.8 Generic_108528-12 sun4u sparc SUNW,Ultra-5_10 > > -- > Jordi Mallach P=E9rez || jo...@pu... || Rediscovering Freed= om, > aka Oskuro in || jo...@si... || Using Debian GNU/Linu= x > Reinos de Leyenda || jo...@de... || http://debian.org > > http://sindominio.net GnuPG public information: pub 1024D/917A225E > telnet pusa.uv.es 23 73ED 4244 FD43 5886 20AC 2644 2584 94BA 917A 225E > |
|
From: Jordi M. <jo...@si...> - 2002-04-14 19:27:46
|
On Sun, Apr 14, 2002 at 05:02:16PM +0200, Mattias Holmstroem wrote: > regex.h:145: parse error before `re_void' > How do I fix this? What version of gnome-mud is this? > OS =3D SunOS magna 5.8 Generic_108528-12 sun4u sparc SUNW,Ultra-5_10 --=20 Jordi Mallach P=E9rez || jo...@pu... || Rediscovering Freedom, aka Oskuro in || jo...@si... || Using Debian GNU/Linux Reinos de Leyenda || jo...@de... || http://debian.org http://sindominio.net GnuPG public information: pub 1024D/917A225E= =20 telnet pusa.uv.es 23 73ED 4244 FD43 5886 20AC 2644 2584 94BA 917A 225E |
|
From: Mattias H. <mh...@sd...> - 2002-04-14 15:02:28
|
this is what I get when trying to compile... Making all in doc Making all in C Making all in intl Making all in po Making all in src In file included from data.c:24: regex.h:145: parse error before `re_void' regex.h:145: warning: type defaults to `int' in declaration of `re_void' regex.h:145: warning: data definition has no type or storage class regex.h:314: parse error before `_ANSI_ARGS_' regex.h:323: parse error before `_ANSI_ARGS_' regex.h:326: parse error before `_ANSI_ARGS_' data.c: In function `match_line': data.c:147: warning: implicit declaration of function `regcomp' data.c:148: warning: implicit declaration of function `regexec' data.c:149: warning: implicit declaration of function `TclReFree' make[2]: *** [data.o] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 Exit 2 How do I fix this? OS =3D SunOS magna 5.8 Generic_108528-12 sun4u sparc SUNW,Ultra-5_10 please help me with this, I hate text based clients and really need this amcl client. thankfull for quick reply MvH Mattias "Nallen" Holmstr=F6m |
|
From: Jordi M. <jo...@si...> - 2002-04-05 11:49:55
|
Hi Paul, On Thu, Apr 04, 2002 at 02:11:21PM -0600, Paul Dholakia wrote: > As a small token of our appreciation for participants' time, and in the > spirit of the philosophy underlying the internet, we will donate $250 = each > (a total of $500) to two organizations/ groups/ charities of our > participants' choice (we ask participants to nominate their favorite > groups in the survey). We will randomly select two groups or organizat= ions > from the nominations of all completed responses. Hmm, weird. Shouldn't the two organizations be selected by number of nominations? I mean, maybe the Free Software Foundation gets 150 nominations, "John Smith's Corp" gets one and takes the $250. Of course, I'm not trying to say who should your organization donate money to, but doing it randomly doesn't seem the best way here. Thanks, Jordi --=20 Jordi Mallach P=E9rez || jo...@pu... || Rediscovering Freedom, aka Oskuro in || jo...@si... || Using Debian GNU/Linux Reinos de Leyenda || jo...@de... || http://debian.org http://sindominio.net GnuPG public information: pub 1024D/917A225E= =20 telnet pusa.uv.es 23 73ED 4244 FD43 5886 20AC 2644 2584 94BA 917A 225E |
|
From: Paul D. <dho...@ri...> - 2002-04-04 20:09:33
|
Dear MUD Users:=20 We are faculty members in the Jones school of management at Rice University in Houston, Texas (you may verify this by doing a Google search under Lisa Klein or Paul Dholakia). We are conducting an academic research project studying different types of social interactions on the internet, and its influence on participants from a sociological perspective. In this regard, we are conducting a survey of members belonging to e-mail groups, chat-rooms, and perhaps most importantly MUDs, seeking information on different elements of their thoughts, feelings, and motivations for participating in the group, as well as questions about the group=92s value to them... The survey is available for answering on the web at the following URL: http://www.surveypro.com/cgi-bin/surveypro/run_survey.cgi?id=3D2458 Of course, this research is strictly academic, and has no commercial motives or interests whatsoever. We hope to publish this research in a sociology or communications journal. As a small token of our appreciation for participants' time, and in the spirit of the philosophy underlying the internet, we will donate $250 each (a total of $500) to two organizations/ groups/ charities of our participants' choice (we ask participants to nominate their favorite groups in the survey). We will randomly select two groups or organizations from the nominations of all completed responses. We are writing to seek your help in conducting this research, first through participating, and second, through encouraging other regular MUD users to participate in the research. This will not take more than ten or fifteen minutes of your (and their time). We would be deeply appreciative of any help that you can provide through participating, or passing on information about this research to MUD users. If you have any questions, please e-mail us (Lisa at lk...@ri...) or (Paul at dho...@ri...). Thank you very much for supporting our research. Best wishes, Lisa Klein, Assistant Professor, Rice University Web-page: http://www.ruf.rice.edu/~lklein=20 Paul Dholakia, Assistant Professor, Rice University Web-page: http://www.ruf.rice.edu/~dholakia=20 =20 =20 ----------------------------------------------------------------------- Dr. Paul Dholakia Assistant Professor of Management Rice University 314 Herring Hall - MS 531 6100 Main Street Houston TX 77005-1892 Tel: 713-348-5376 Fax: 713-348-5251 http://www.ruf.rice.edu/~dholakia ----------------------------------------------------------------------- =20 |
|
From: Robin E. <lo...@lo...> - 2002-03-15 14:52:28
|
There are a lot of goodies, for example the nice python scripting support. - GNOME-Mud can now do session recording (logging in realtime), and save session log to file. - Python scripting support (requires Python >= 2.0). - MudConnect lists support. You can download MudConnect.com's mud list from http://www.mudconnect.com/zmud/mudlist.txt. - Updated to gettext 0.10.40. - Mouse wheel and Page Up/Down support in the main window. - Font/Color support rewritten. - Fixed compilation on non-glibc systems. - Fixed the printing of ASCII junk at the end of telnet packets when connected to certain MUDs. - Terminal setting support. - Lots of bugfixes. - Fixed the MCCP segfault, hopefully. - Nested alias now works, with a maximum depth of 5. - Reconnect option on menu. - User manual updates. - Translation updates (ca, es, fr, sv). - Command history rewritten, and now working as it should. Have fun! -- Robin Ericsson <lobbin at localhost dot nu> "The secret of flying is to throw yourself at the ground, and miss." -- Douglas Adams |
|
From: Jordi M. <jo...@si...> - 2001-11-09 11:50:10
|
On Fri, Nov 09, 2001 at 09:05:13AM +0100, Robin Ericsson wrote: > Changes: > - GNOME-Mud Manual added (GNOME Help format). Note: you won't see a link > to this manual in the Help menu if you installed gnome-mud from a tar.gz > into /usr/local and the core of the gnome installation is in /usr. This > is a known limitation in gnome-libs, and affects the panel's .desktop > files too. This GNOME bug only affects the .desktop file now. Robin fixed it for the manual in the last minute. We forgot to update the release notes. I don't know if the two persons that complained about lack of docs are subscribed still, but if you are reading, I'd love to have feedback about the manual. I wrote it for you guys, so if you see things missing or have suggestions, please tell so. Thanks, Jordi --=20 Jordi Mallach P=E9rez || jo...@pu... || Rediscovering Freedom, aka Oskuro in || jo...@si... || Using Debian GNU/Linux Reinos de Leyenda || jo...@de... || http://debian.org http://sindominio.net GnuPG public information: pub 1024D/917A225E= =20 telnet pusa.uv.es 23 73ED 4244 FD43 5886 20AC 2644 2584 94BA 917A 225E |
|
From: Robin E. <lo...@lo...> - 2001-11-09 08:09:11
|
Those who follow the development of AMCL knows that AMCL has changed name to GNOME-Mud and is now GNOME only. I'm happy to announce the 0.8 release of GNOME-Mud, and hope this will make a big step in the development of GNOME-Mud. Changes: - Name changed to GNOME-Mud. - Compiled using GNOME libs. - Initial profiles support. - Preferences reordering. - Help dialogs "AUTHORS" and "README" removed, please see "ABOUT" or the documents shipped with the package. - Manpage added (gnome-mud.6) - GNOME-Mud Manual added (GNOME Help format). Note: you won't see a link to this manual in the Help menu if you installed gnome-mud from a tar.gz into /usr/local and the core of the gnome installation is in /usr. This is a known limitation in gnome-libs, and affects the panel's .desktop files too. - French Translation. - Catalan, Spanish and Swedish updates. - Many bugfixes. VBR Robin Ericsson |
|
From: Henrik N. <he...@ro...> - 2001-07-23 12:23:49
|
little problem, i havnt found anywhere to change the default bg/fg colors, im happy with the black bg color, but fg seems to be the dark grey color which is wayy to dark, otherwise i love amcl, thanks // Caereth the Mage :D |
|
From: Jordi M. <jo...@si...> - 2001-04-06 10:04:44
|
On Thu, Apr 05, 2001 at 10:11:39AM -0500, David H. Clymer,,, wrote: > it would be really helpfull to have even the barest amount of=20 > documention for this program. supposedly this client supports a command= =20 > divider. but who cares? either i dont know how to use it, or it doesnt=20 > work. they both have the same effect, because i dont have any=20 > documentation to tell me or at least suggest which it is. Yeah, sadly this is the current situation. I don't know if you're away of the changes AMCL has "suffered" in the last months. There's no release, but it should be changing name to GNOME-Mud once there's a releasable version. There should be some SGML documentation by then, aimed for Gnome-Help, but usable with any other converter. I haven't had time to write this recently, very busy with classes or other Debian packages. Anyway, I hope the doc issue will be solved soon. > my problem: command divider char is set to ";" however, when i use that,= =20 > it doesnt work the command line or in aliases. and whats with the=20 > variables? they dont expand on the command line or anywhere else either.= =20 > or isnt that what the variables are? again. no documentation to even=20 > point in the general direction. Are you saying ";" doesn't work for you? Have you checked if you configured another division character? About variables, never used them so I don't really know how they work. I hope someone else can answer this. Anyway, I'm sorry about the current situation. I'll try to come up with something useful in the vacation starting next week. Thanks, Jordi --=20 Jordi Mallach P=E9rez || jo...@pu... || Rediscovering Freedom, aka Oskuro in || jo...@si... || Using Debian GNU/Linux Reinos de Leyenda || jo...@de... || http://debian.org http://sindominio.net GnuPG public information: pub 1024D/917A225E= =20 telnet pusa.uv.es 23 73ED 4244 FD43 5886 20AC 2644 2584 94BA 917A 225E |
|
From: David H. Clymer,,, <dc...@me...> - 2001-04-05 15:16:05
|
it would be really helpfull to have even the barest amount of documention for this program. supposedly this client supports a command divider. but who cares? either i dont know how to use it, or it doesnt work. they both have the same effect, because i dont have any documentation to tell me or at least suggest which it is. my problem: command divider char is set to ";" however, when i use that, it doesnt work the command line or in aliases. and whats with the variables? they dont expand on the command line or anywhere else either. or isnt that what the variables are? again. no documentation to even point in the general direction. would appreciate some info, davidc |
|
From: Jordi M. <jo...@si...> - 2001-03-06 14:07:43
|
Hello John... On Mon, Mar 05, 2001 at 09:12:27PM +0000, jpfeltz wrote: > I cannot get triggers to work in AMCL, i have the latest stable. I don't= =20 > have a real understanding of the syntax for triggers, i tried all the=20 > regular expressions i knew and non regular expression stuph. > Anyway, here's my problem: > I want "You step out of the shadows." to trigger "shadowwalk". Oops. I guess you're getting this "character ' ' not allowed" stuff. I guess that should be fixed. I'm forwarding this to the author of that code and Robbin. Thanks for the report, Jordi --=20 Jordi Mallach P=E9rez || jo...@pu... || Rediscovering Freedom, aka Oskuro in || jo...@si... || Using Debian GNU/Linux Reinos de Leyenda || jo...@de... || http://debian.org http://sindominio.net GnuPG public information: pub 1024D/917A225E= =20 telnet pusa.uv.es 23 73ED 4244 FD43 5886 20AC 2644 2584 94BA 917A 225E |
|
From: jpfeltz <jp...@te...> - 2001-03-06 02:56:33
|
I cannot get triggers to work in AMCL, i have the latest stable. I don't have a real understanding of the syntax for triggers, i tried all the regular expressions i knew and non regular expression stuph. Anyway, here's my problem: I want "You step out of the shadows." to trigger "shadowwalk". thanx for any help john |
|
From: jpfeltz <jp...@te...> - 2001-03-06 02:48:03
|
|
From: jpfeltz <jp...@te...> - 2001-03-05 04:06:11
|
subscribe |
|
From: Jordi M. <jo...@si...> - 2000-12-20 20:36:07
|
On Tue, Dec 19, 2000 at 06:13:33PM +0000, Robin Ericsson wrote: > Today I released AMCL version 0.7.5, which mostly is a bugfixes release. Ok, I found you shipped mkhelp.h, etc. instead of Makefile.mkhelp and mkhelp.c. Any reason to do this? I reverted this to the old behaviour in the Debian package (installed already), but I wonder why you did this anyway. As I've said before, I find that is not too cool and we should see of replacing it with a better thing (I'm thinking gnome-help, so that's what I'll do because I really want that out :) Anyway... --=20 Jordi Mallach P=E9rez || jo...@pu... || Rediscovering Freedom, aka Oskuro in || jo...@si... || Using Debian GNU/Linux Reinos de Leyenda || jo...@de... || http://debian.org http://sindominio.net GnuPG public information: pub 1024D/917A225E= =20 telnet pusa.uv.es 23 73ED 4244 FD43 5886 20AC 2644 2584 94BA 917A 225E |
|
From: Robin E. <lo...@lo...> - 2000-12-19 18:12:24
|
Today I released AMCL version 0.7.5, which mostly is a bugfixes release.= Available at http://amcl.sourceforge.net. Br, Robin |