Gnus development mailing list
 help / color / mirror / Atom feed
* make-x.bat
@ 2001-12-16 22:08 Frank Haun
  2001-12-17  8:48 ` make-x.bat Frank Schmitt
  2001-12-18 10:35 ` make-x.bat Kai Großjohann
  0 siblings, 2 replies; 6+ messages in thread
From: Frank Haun @ 2001-12-16 22:08 UTC (permalink / raw)


[Latest CVS Gnus, German W2K, XEmacs 21.4.5]

Compiling with

  «make-x.bat F:/Xemacs/XEmacs-21.4.5/i586-pc-win32»

I get:

"==true" ist syntaktisch an dieser Stelle nicht verarbeitbar.

I'm not a really expert on writing Dos batch files, but it seems that
the variable "copy" should have a default value.

It helps to write

  if "%2" == "" set copy="false"

before

  if "%2" == "copy" set copy=true
  if "%2" == "/copy" set copy=true

is evaluated.

Frank
-- 
  (error "Couldn't find doc group")



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: make-x.bat
  2001-12-16 22:08 make-x.bat Frank Haun
@ 2001-12-17  8:48 ` Frank Schmitt
  2001-12-18 10:35 ` make-x.bat Kai Großjohann
  1 sibling, 0 replies; 6+ messages in thread
From: Frank Schmitt @ 2001-12-17  8:48 UTC (permalink / raw)


Frank Haun <pille3000@gmx.net> writes:

>I get:
>
>"==true" ist syntaktisch an dieser Stelle nicht verarbeitbar.
>
>I'm not a really expert on writing Dos batch files, but it seems that
>the variable "copy" should have a default value.
>
>It helps to write
>
>  if "%2" == "" set copy="false"
>
>before
>
>  if "%2" == "copy" set copy=true
>    if "%2" == "/copy" set copy=true
>
>is evaluated.

Argh, one more differing .bat syntax. The above seems to work here, too
so could please someone commit this change?

-- 
One Ring to rule them all, One Ring to find them,
One Ring to bring them all and in the darkness bind them
In the Land of Mordor where the Shadows lie.
19. Dezember 2001



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: make-x.bat
  2001-12-16 22:08 make-x.bat Frank Haun
  2001-12-17  8:48 ` make-x.bat Frank Schmitt
@ 2001-12-18 10:35 ` Kai Großjohann
  1 sibling, 0 replies; 6+ messages in thread
From: Kai Großjohann @ 2001-12-18 10:35 UTC (permalink / raw)
  Cc: ding

Frank Haun <pille3000@gmx.net> writes:

> It helps to write
>
>   if "%2" == "" set copy="false"
>
> before
>
>   if "%2" == "copy" set copy=true
>   if "%2" == "/copy" set copy=true
>
> is evaluated.

Done.

kai
-- 
Simplification good!  Oversimplification bad!  (Larry Wall)



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: make-x.bat
  2001-11-11 15:19 make-x.bat Frank Haun
  2001-11-11 16:18 ` make-x.bat Simon Josefsson
@ 2001-11-11 17:11 ` Frank Schmitt
  1 sibling, 0 replies; 6+ messages in thread
From: Frank Schmitt @ 2001-11-11 17:11 UTC (permalink / raw)


Frank Haun <pille3000@gmx.net> writes:

>It seems that the parameter ``-nw'' is not supported with the
>_NON-CYGWIN_ windows binaries. I've tested XEmacs 21.4.3 and XEmacs
>21.4.5. If the cygwin binaries does I don't know. Without the parameter
>``-nw'' compiling gnus works well.

Yepp, confirmed this. Could anyone with cvs access delete the -nw
parameters? I only inserted them because they prevent XEmacs from 
telling it has finished processing the tasks.

-- 
One Ring to rule them all, One Ring to find them,
One Ring to bring them all and in the darkness bind them
In the Land of Mordor where the Shadows lie.
19. Dezember 2001



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: make-x.bat
  2001-11-11 15:19 make-x.bat Frank Haun
@ 2001-11-11 16:18 ` Simon Josefsson
  2001-11-11 17:11 ` make-x.bat Frank Schmitt
  1 sibling, 0 replies; 6+ messages in thread
From: Simon Josefsson @ 2001-11-11 16:18 UTC (permalink / raw)
  Cc: ding

Frank Haun <pille3000@gmx.net> writes:

> It seems that the parameter ``-nw'' is not supported with the
> _NON-CYGWIN_ windows binaries. I've tested XEmacs 21.4.3 and XEmacs
> 21.4.5. If the cygwin binaries does I don't know. Without the parameter
> ``-nw'' compiling gnus works well.

I removed it from Oort, thanks.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* make-x.bat
@ 2001-11-11 15:19 Frank Haun
  2001-11-11 16:18 ` make-x.bat Simon Josefsson
  2001-11-11 17:11 ` make-x.bat Frank Schmitt
  0 siblings, 2 replies; 6+ messages in thread
From: Frank Haun @ 2001-11-11 15:19 UTC (permalink / raw)


XEmacs is "XEmacs 21.4 (patch 5) \"Civil Service (Windows)\" [Lucid]
(i586-pc-win32) of Sun Oct 28 2001 on TSUNAMI"

Gnus is a fresh CVS Gnus.

I do "./make-x.bat F:/Xemacs/XEmacs-21.4.5/i586-pc-win32" and get

  "XEmacs: Sorry, this XEmacs was not compiled with TTY support". 

I only see this message because I compile from a cygwin rxvt.

Looking in make-x.bat there is a new parameter ``-nw'' in:
[Line: 17]
call %1\%emacs% -batch -nw -q -no-site-file -l ./dgnushack.el -f dgnushack-compile
[Line: 23]
set EMACSINFO=call %1\%emacs% -no-site-file -no-init-file -batch -nw -q -l infohack.el -f batch-makeinfo

It seems that the parameter ``-nw'' is not supported with the
_NON-CYGWIN_ windows binaries. I've tested XEmacs 21.4.3 and XEmacs
21.4.5. If the cygwin binaries does I don't know. Without the parameter
``-nw'' compiling gnus works well.

Frank
-- 
  (error "Couldn't find doc group")



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2001-12-18 10:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-12-16 22:08 make-x.bat Frank Haun
2001-12-17  8:48 ` make-x.bat Frank Schmitt
2001-12-18 10:35 ` make-x.bat Kai Großjohann
  -- strict thread matches above, loose matches on Subject: below --
2001-11-11 15:19 make-x.bat Frank Haun
2001-11-11 16:18 ` make-x.bat Simon Josefsson
2001-11-11 17:11 ` make-x.bat Frank Schmitt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).