Re: Notification: incoming/1578

2005-02-02 Thread Alex Wallis
On Tue, 1 Feb 2005 23:55:49 +
Mikhael Goikhman [EMAIL PROTECTED] wrote:

 We need someone with Debian (preferable stock) to run make deb-inplace
 inside the unpacked fvwm-2.5.12 directory, and submit us the deb file.
 

I run stock debian sarge on my latop producing the following results from 
./configure in the unpacked fvwm-2.5.12 directory

FVWM Configuration:

  Version: 2.5.12

  Executables: /usr/local/bin
  Man pages:   /usr/local/man
  Modules: /usr/local/libexec/fvwm/2.5.12
  Data files:  /usr/local/share/fvwm
  Perl lib:/usr/local/share/fvwm/perllib
  Locale msg:  /usr/local/share/locale  ar de fr sv_SE zh_CN

  With Asian bi-direct. text support? yes
  With Gettext Native Lang support?   yes (libc)
  With GTK+ required for FvwmGtk? yes
  With GDK image support in FvwmGtk?  yes
  With GNOME libs support in FvwmGtk? yes
  With Iconv support? yes (from C library)
  With Mouse strokes (gestures)?  yes
  With PNG image support? yes
  With ReadLine sup. in FvwmConsole?  yes
  With RPlay support in FvwmEvent?yes
  With Shaped window support? yes
  With Shared memory for XImage?  yes
  With Session Management support?yes
  With Xinerama multi-head support?   yes
  With Xft anti-alias font support?   yes (version 2)
  With XPM image support? yes
  With Xrender image support? yes


The results of make deb-inplace including the resulting config.log can be found 
at

http://wombat.awol.net.au/awol/debian/


HTH

Alex
--
Visit the official FVWM web page at URL:http://www.fvwm.org/.
To unsubscribe from the list, send unsubscribe fvwm-workers in the
body of a message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]


Re: Notification: incoming/1578

2005-02-02 Thread Mikhael Goikhman
On 02 Feb 2005 21:23:32 +1030, Alex Wallis wrote:
 
 On Tue, 1 Feb 2005 23:55:49 Mikhael Goikhman [EMAIL PROTECTED] wrote:
 
  We need someone with Debian (preferable stock) to run make deb-inplace
  inside the unpacked fvwm-2.5.12 directory, and submit us the deb file.
 
 I run stock debian sarge on my latop producing the following results

 http://wombat.awol.net.au/awol/debian/

By stock I meant at least several years ago (to be usable for more
users). Also, I am not sure that depending on gnome and rplay is good.
Anyway, if you rerun make deb-dist release=1 that disables some
dependencies, then I will put a link to the resulting packages. Thanks.

To Will Jhun: do you still experience the crash with the packages above,
and no with the 2.5.8 packages created by the same procedure? If yes,
then the only way to try to find the problem is to build from the
sources, use the minimal fvwm config (or no config), get the dumped core
file, run gdb fvwm core and then send the output of where command.

Regards,
Mikhael.
--
Visit the official FVWM web page at URL:http://www.fvwm.org/.
To unsubscribe from the list, send unsubscribe fvwm-workers in the
body of a message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]


Re: PATCH: if-elsif-else-endif syntax (v2.0)

2005-02-02 Thread Mikhael Goikhman
On 01 Feb 2005 12:41:25 +0100, Uwe Pross wrote:
 
 On 29 Jan 2005 at 14:26:03 +1100, Scott Smedley wrote:
 
  Further examples are available at:
  
  http://users.tpg.com.au/users/scottie7/tmp/config.if
  
  ...
  
  Any comments/criticism most welcome.
 
 AddToMenu my_menu
 if ! ShellCmd /opt/myprogram 
 + My Program menu Menu my_program_menu
 endif
 
 This should be possible.?

Well, strictly speaking. you may already do this intuitively:

  AddToMenu my_menu
  Test (x myprogram) + My Program menu Menu my_program_menu

Similarly, you may already implement any need for if-else using TestRc.
But I do agree that in the general case, the real if-else-elsif-endif
syntax is a better (more intuitive) attempt at scripting than TestRc,
functions and Break.

Well, this new syntax is very similar to the one suggested in the thread:
  http://www.hpc.uh.edu/fvwm/archive/0108/msg00044.html
At that time the short construct made sence, now it is already possible.

This patch seems to be good and complete overall. It may be applied later
(probably after 2.6.0, if we want to ever release it).

Regards,
Mikhael.
--
Visit the official FVWM web page at URL:http://www.fvwm.org/.
To unsubscribe from the list, send unsubscribe fvwm-workers in the
body of a message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]


Re: Help on installing FVWM-2.4.19

2005-02-02 Thread Mikhael Goikhman
On 01 Feb 2005 23:19:27 +, Mikhael Goikhman wrote:
 
 Don't specify --without-gnome, it does not do what you think it does.

Sorry, this specific advice was bad, using --without-gnome is useful.

I refered to --disable-gnome-hints (or --disable-gnome in the past).

Regards,
Mikhael.

--
Visit the official FVWM web page at URL:http://www.fvwm.org/.
To unsubscribe from the list, send unsubscribe fvwm-workers in the
body of a message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]


Re: PATCH: if-elsif-else-endif syntax (v2.0)

2005-02-02 Thread Rafal Bisingier
On Wed, Feb 02, 2005 at 06:42:19PM +, Mikhael Goikhman wrote:
 On 01 Feb 2005 12:41:25 +0100, Uwe Pross wrote:
  
  On 29 Jan 2005 at 14:26:03 +1100, Scott Smedley wrote:
  
   Further examples are available at:
   
   http://users.tpg.com.au/users/scottie7/tmp/config.if
   
   ...
   
   Any comments/criticism most welcome.
  
  AddToMenu my_menu
  if ! ShellCmd /opt/myprogram 
  + My Program menu Menu my_program_menu
  endif
  
  This should be possible.?
 
 Well, strictly speaking. you may already do this intuitively:
 
   AddToMenu my_menu
   Test (x myprogram) + My Program menu Menu my_program_menu
 
 Similarly, you may already implement any need for if-else using TestRc.
 But I do agree that in the general case, the real if-else-elsif-endif
 syntax is a better (more intuitive) attempt at scripting than TestRc,
 functions and Break.
 
 Well, this new syntax is very similar to the one suggested in the thread:
   http://www.hpc.uh.edu/fvwm/archive/0108/msg00044.html
 At that time the short construct made sence, now it is already possible.
 
 This patch seems to be good and complete overall. It may be applied later
 (probably after 2.6.0, if we want to ever release it).

Some time ago (strictly speeking on 4 october 2004 ;-) I've sent here a
small patch which can do similar things, but with additional help of
PipeRead (so no ShellCmd). My patch doesn't provide so much fexibility
as the if-else-elsif-endif syntax, but has one big advantage: it's
completly transparent for users, that don't want to use it. Virtualy no
change in any config should be needed, for fvwm with my patch applied.
My patch simply adds a new Test option named Compare for comparing two
values. That's why PipeRead is still needed - you have to set the values
to compare.

Details could be found in the archive:
http://www.hpc.uh.edu/fvwm/archive/0410/msg00033.html

I'd really like to see this patch merged into main tree before 2.6.0,
but I don't have much hope... ;-)
Of course if-else-elsif-endif syntax would be even nicer to have,
but I agree that this can wait till 2.6.0 (together with extended
conditionals: Name/IconName/Class/Resource/AnyName :-( )

PS. As usual sorry for my english.

-- 
Rafal Bisingier


pgpjn4snSAoOq.pgp
Description: PGP signature


Re: Notification: incoming/1578

2005-02-02 Thread Alex Wallis
On Wed, 2 Feb 2005 16:47:12 +
Mikhael Goikhman [EMAIL PROTECTED] wrote:

 On 02 Feb 2005 21:23:32 +1030, Alex Wallis wrote:
  
  On Tue, 1 Feb 2005 23:55:49 Mikhael Goikhman [EMAIL PROTECTED] wrote:
  
   We need someone with Debian (preferable stock) to run make deb-inplace
   inside the unpacked fvwm-2.5.12 directory, and submit us the deb file.
  
  I run stock debian sarge on my latop producing the following results
 
  http://wombat.awol.net.au/awol/debian/
 
 By stock I meant at least several years ago (to be usable for more
 users). Also, I am not sure that depending on gnome and rplay is good.
 Anyway, if you rerun make deb-dist release=1 that disables some
 dependencies, then I will put a link to the resulting packages. Thanks.
 

Done. Same url as above.

Alex
--
Visit the official FVWM web page at URL:http://www.fvwm.org/.
To unsubscribe from the list, send unsubscribe fvwm-workers in the
body of a message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]