Gnus development mailing list
 help / color / mirror / Atom feed
* Somebody working on make.bat /make-x.bat?
@ 2003-02-26 22:08 Frank Schmitt
  2003-02-27  7:52 ` Niklas Morberg
  2003-02-27 19:46 ` frank paulsen
  0 siblings, 2 replies; 5+ messages in thread
From: Frank Schmitt @ 2003-02-26 22:08 UTC (permalink / raw)


Hi

Just wanted to hear if there's anybody out there who's just working on
make.bat / make-x.bat.

If this isn't the case, I'd like to redo the "install Gnus under
Windows" stuff from scratch since

1) It's bad that there are two different files to keep up-to-date, one
   generic file would be better
2) Neither make.bat nor make-x.bat generate info files for PGG and
   Sieve but they trie to copy them to Emacs info dir
3) Neither make.bat nor make-x.bat install the Smilies and Tool-Bar
   buttons
4) make.bat assumes that makeinfo is installed and doesn't fall back to
   infohack.el, make-x.bat uses infohack.el and doesn't use makeinfo
   even if it is available

If there are more problems with the current solution, please let me
know.

MFG Frank

-- 
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.



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

* Re: Somebody working on make.bat /make-x.bat?
  2003-02-26 22:08 Somebody working on make.bat /make-x.bat? Frank Schmitt
@ 2003-02-27  7:52 ` Niklas Morberg
  2003-02-27  8:48   ` Frank Schmitt
  2003-02-27 19:46 ` frank paulsen
  1 sibling, 1 reply; 5+ messages in thread
From: Niklas Morberg @ 2003-02-27  7:52 UTC (permalink / raw)


Frank Schmitt <usereplyto@Frank-Schmitt.net> writes:

> 3) Neither make.bat nor make-x.bat install the Smilies and
>    Tool-Bar buttons

AFAIK emacs doesn't support images in Windows, so it wouldn't
make much sense to install these anyway.

Nice to see that someone cares about Windows users, btw.

Niklas




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

* Re: Somebody working on make.bat /make-x.bat?
  2003-02-27  7:52 ` Niklas Morberg
@ 2003-02-27  8:48   ` Frank Schmitt
  0 siblings, 0 replies; 5+ messages in thread
From: Frank Schmitt @ 2003-02-27  8:48 UTC (permalink / raw)


Niklas Morberg <niklas.morberg@axis.com> writes:

> Frank Schmitt <usereplyto@Frank-Schmitt.net> writes:
>
>> 3) Neither make.bat nor make-x.bat install the Smilies and
>>    Tool-Bar buttons
>
> AFAIK emacs doesn't support images in Windows, so it wouldn't
> make much sense to install these anyway.

The next release will, so it can't hurt to already implement it, XEmacs
does support images already however.

> Nice to see that someone cares about Windows users, btw.

"Ich bekenne Gott dem allmächtigen und euch Brüdern und Schwestern, dass
ich Gutes unterlassen und Böses getan habe..." (Sorry, no idea how it
translates to English)

Ah, Google knows the answer

"I confess to almighty God, and to you, my brothers and sisters, that I
have sinned..."

-- 
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.



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

* Re: Somebody working on make.bat /make-x.bat?
  2003-02-26 22:08 Somebody working on make.bat /make-x.bat? Frank Schmitt
  2003-02-27  7:52 ` Niklas Morberg
@ 2003-02-27 19:46 ` frank paulsen
  2003-02-27 20:06   ` Frank Schmitt
  1 sibling, 1 reply; 5+ messages in thread
From: frank paulsen @ 2003-02-27 19:46 UTC (permalink / raw)


Frank Schmitt <usereplyto@Frank-Schmitt.net> writes:

> If there are more problems with the current solution, please let me
> know.

make.bat does not create lisp/gnus-load.el

i added the following lines right after the compile phase, but i am
not sure about the '.' for '$(srcdir)'.

,----[ make.bat ]--
| %EMACSBATCH% -l ./dgnushack.el -f dgnushack-compile
| %EMACSBATCH% -l ./dgnushack.el -f dgnushack-make-cus-load .
| %EMACSBATCH% -l ./dgnushack.el -f dgnushack-make-auto-load .
| %EMACSBATCH% -l ./dgnushack.el -f dgnushack-make-load
`----

EMACSBATCH contains '-batch -q', which seems to be redundant:

,----[ info Emacs ]--
| `--batch'
|      [...]
|      `-batch' implies `-q' (do not load an init file).  It also causes
|      Emacs to kill itself after all command options have been
|      processed.  In addition, auto-saving is not done except in buffers
|      for which it has been explicitly requested.
`----

-- 
frobnicate foo



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

* Re: Somebody working on make.bat /make-x.bat?
  2003-02-27 19:46 ` frank paulsen
@ 2003-02-27 20:06   ` Frank Schmitt
  0 siblings, 0 replies; 5+ messages in thread
From: Frank Schmitt @ 2003-02-27 20:06 UTC (permalink / raw)


frank paulsen <frank.paulsen@gmx.net> writes:

> Frank Schmitt <usereplyto@Frank-Schmitt.net> writes:
>
>> If there are more problems with the current solution, please let me
>> know.
>
> make.bat does not create lisp/gnus-load.el
>
> i added the following lines right after the compile phase, but i am
> not sure about the '.' for '$(srcdir)'.
>
> ,----[ make.bat ]--
> | %EMACSBATCH% -l ./dgnushack.el -f dgnushack-compile
> | %EMACSBATCH% -l ./dgnushack.el -f dgnushack-make-cus-load .
> | %EMACSBATCH% -l ./dgnushack.el -f dgnushack-make-auto-load .
> | %EMACSBATCH% -l ./dgnushack.el -f dgnushack-make-load
> `----
>
> EMACSBATCH contains '-batch -q', which seems to be redundant:
>
> ,----[ info Emacs ]--
> | `--batch'
> |      [...]
> |      `-batch' implies `-q' (do not load an init file).  It also causes
> |      Emacs to kill itself after all command options have been
> |      processed.  In addition, auto-saving is not done except in buffers
> |      for which it has been explicitly requested.
> `----

OK, I'll have a look at those, too.

-- 
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.



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

end of thread, other threads:[~2003-02-27 20:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-26 22:08 Somebody working on make.bat /make-x.bat? Frank Schmitt
2003-02-27  7:52 ` Niklas Morberg
2003-02-27  8:48   ` Frank Schmitt
2003-02-27 19:46 ` frank paulsen
2003-02-27 20:06   ` 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).