unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* m68k--netbsdelf still in use
@ 2009-01-14 19:36 S.P.Zeidler
  2009-01-16 15:30 ` Chong Yidong
  0 siblings, 1 reply; 6+ messages in thread
From: S.P.Zeidler @ 2009-01-14 19:36 UTC (permalink / raw)
  To: emacs-devel

Hi,

I doubt the great number of systems left (*ahem*) warrants keeping
support of emacs on m68k if that means effort, but if it's no bother,
please keep it.

serpens.de is an Amiga 3000 with an M68060 and 128M RAM.
It runs NetBSD 4.0 at present.

best regards,
	spz
-- 
spz@serpens.de (S.P.Zeidler)




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

* Re: m68k--netbsdelf still in use
  2009-01-14 19:36 m68k--netbsdelf still in use S.P.Zeidler
@ 2009-01-16 15:30 ` Chong Yidong
  2009-01-17  6:57   ` Dan Nicolaescu
  0 siblings, 1 reply; 6+ messages in thread
From: Chong Yidong @ 2009-01-16 15:30 UTC (permalink / raw)
  To: S.P.Zeidler; +Cc: Dan Nicolaescu, emacs-devel

> I doubt the great number of systems left (*ahem*) warrants keeping
> support of emacs on m68k if that means effort, but if it's no bother,
> please keep it.
>
> serpens.de is an Amiga 3000 with an M68060 and 128M RAM.
> It runs NetBSD 4.0 at present.

Is this the machine identified by the following line from the Emacs 22
configure file?

    case "${canonical}" in
      alpha*-*-netbsd*) machine=alpha ;;
      i[3456]86-*-netbsd*) machine=intel386 ;;
      m68k-*-netbsd*)
                # This is somewhat bogus.
                       machine=hp9000s300 ;;

If so, the file src/m/hp9000s300.h has been removed from CVS, but it may
be feasible to restore it.  (Dan, could you check?)




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

* Re: m68k--netbsdelf still in use
  2009-01-16 15:30 ` Chong Yidong
@ 2009-01-17  6:57   ` Dan Nicolaescu
  2009-01-19 18:42     ` S.P.Zeidler
  0 siblings, 1 reply; 6+ messages in thread
From: Dan Nicolaescu @ 2009-01-17  6:57 UTC (permalink / raw)
  To: Chong Yidong; +Cc: S.P.Zeidler, emacs-devel

Chong Yidong <cyd@stupidchicken.com> writes:

  > > I doubt the great number of systems left (*ahem*) warrants keeping
  > > support of emacs on m68k if that means effort, but if it's no bother,
  > > please keep it.
  > >
  > > serpens.de is an Amiga 3000 with an M68060 and 128M RAM.
  > > It runs NetBSD 4.0 at present.
  > 
  > Is this the machine identified by the following line from the Emacs 22
  > configure file?
  > 
  >     case "${canonical}" in
  >       alpha*-*-netbsd*) machine=alpha ;;
  >       i[3456]86-*-netbsd*) machine=intel386 ;;
  >       m68k-*-netbsd*)
  >                 # This is somewhat bogus.
  >                        machine=hp9000s300 ;;
  > 
  > If so, the file src/m/hp9000s300.h has been removed from CVS, but it may
  > be feasible to restore it.  (Dan, could you check?)

I'd say it would be better to first try to see if CVS HEAD works with machine=m68k
on that platform.




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

* Re: m68k--netbsdelf still in use
  2009-01-17  6:57   ` Dan Nicolaescu
@ 2009-01-19 18:42     ` S.P.Zeidler
  2009-01-20  8:05       ` Dan Nicolaescu
  2009-01-22  7:02       ` Dan Nicolaescu
  0 siblings, 2 replies; 6+ messages in thread
From: S.P.Zeidler @ 2009-01-19 18:42 UTC (permalink / raw)
  To: Dan Nicolaescu; +Cc: Chong Yidong, emacs-devel

Hi,

Thus wrote Dan Nicolaescu (dann@ics.uci.edu):

> Chong Yidong <cyd@stupidchicken.com> writes:
> 
>   > > serpens.de is an Amiga 3000 with an M68060 and 128M RAM.
>   > > It runs NetBSD 4.0 at present.
>   > 
>   > Is this the machine identified by the following line from the Emacs 22
>   > configure file?
>   > 
>   >     case "${canonical}" in
>   >       alpha*-*-netbsd*) machine=alpha ;;
>   >       i[3456]86-*-netbsd*) machine=intel386 ;;
>   >       m68k-*-netbsd*)
>   >                 # This is somewhat bogus.
>   >                        machine=hp9000s300 ;;

Up to now, yes.

>   > If so, the file src/m/hp9000s300.h has been removed from CVS, but it may
>   > be feasible to restore it.  (Dan, could you check?)
> 
> I'd say it would be better to first try to see if CVS HEAD works with machine=m68k
> on that platform.

--- snip ---
Index: configure
===================================================================
RCS file: /sources/emacs/emacs/configure,v
retrieving revision 1.305
diff -u -r1.305 configure
--- configure   9 Dec 2008 20:36:23 -0000       1.305
+++ configure   19 Jan 2009 18:16:02 -0000
@@ -2459,6 +2459,7 @@
       arm-*-netbsd*)   machine=arm ;;
       x86_64-*-netbsd*)        machine=amdx86-64 ;;
       hppa-*-netbsd*)  machine=hp800 ;;
+      m68k-*-netbsd*)  machine=m68k ;;
     esac
   ;;
 
--- snip ---

will build, and edit files just fine. Is there a test suite to probe the
resulting binary more closely?

regards,
	spz
-- 
spz@serpens.de (S.P.Zeidler)




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

* Re: m68k--netbsdelf still in use
  2009-01-19 18:42     ` S.P.Zeidler
@ 2009-01-20  8:05       ` Dan Nicolaescu
  2009-01-22  7:02       ` Dan Nicolaescu
  1 sibling, 0 replies; 6+ messages in thread
From: Dan Nicolaescu @ 2009-01-20  8:05 UTC (permalink / raw)
  To: S.P.Zeidler; +Cc: Chong Yidong, emacs-devel

"S.P.Zeidler" <spz@serpens.de> writes:

  > Hi,
  > 
  > Thus wrote Dan Nicolaescu (dann@ics.uci.edu):
  > 
  > > Chong Yidong <cyd@stupidchicken.com> writes:
  > > 
  > >   > > serpens.de is an Amiga 3000 with an M68060 and 128M RAM.
  > >   > > It runs NetBSD 4.0 at present.
  > >   > 
  > >   > Is this the machine identified by the following line from the Emacs 22
  > >   > configure file?
  > >   > 
  > >   >     case "${canonical}" in
  > >   >       alpha*-*-netbsd*) machine=alpha ;;
  > >   >       i[3456]86-*-netbsd*) machine=intel386 ;;
  > >   >       m68k-*-netbsd*)
  > >   >                 # This is somewhat bogus.
  > >   >                        machine=hp9000s300 ;;
  > 
  > Up to now, yes.
  > 
  > >   > If so, the file src/m/hp9000s300.h has been removed from CVS, but it may
  > >   > be feasible to restore it.  (Dan, could you check?)
  > > 
  > > I'd say it would be better to first try to see if CVS HEAD works with machine=m68k
  > > on that platform.
  > 
  > --- snip ---
  > Index: configure
  > ===================================================================
  > RCS file: /sources/emacs/emacs/configure,v
  > retrieving revision 1.305
  > diff -u -r1.305 configure
  > --- configure   9 Dec 2008 20:36:23 -0000       1.305
  > +++ configure   19 Jan 2009 18:16:02 -0000
  > @@ -2459,6 +2459,7 @@
  >        arm-*-netbsd*)   machine=arm ;;
  >        x86_64-*-netbsd*)        machine=amdx86-64 ;;
  >        hppa-*-netbsd*)  machine=hp800 ;;
  > +      m68k-*-netbsd*)  machine=m68k ;;
  >      esac
  >    ;;
  >  
  > --- snip ---
  > 
  > will build, and edit files just fine. 

Thanks for testing, I'll check in such a change when I get a chance.

  > Is there a test suite to probe the resulting binary more closely?

Unfortunately there isn't.




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

* Re: m68k--netbsdelf still in use
  2009-01-19 18:42     ` S.P.Zeidler
  2009-01-20  8:05       ` Dan Nicolaescu
@ 2009-01-22  7:02       ` Dan Nicolaescu
  1 sibling, 0 replies; 6+ messages in thread
From: Dan Nicolaescu @ 2009-01-22  7:02 UTC (permalink / raw)
  To: S.P.Zeidler; +Cc: Chong Yidong, emacs-devel

"S.P.Zeidler" <spz@serpens.de> writes:

  > Hi,
  > 
  > Thus wrote Dan Nicolaescu (dann@ics.uci.edu):
  > 
  > > Chong Yidong <cyd@stupidchicken.com> writes:
  > > 
  > >   > > serpens.de is an Amiga 3000 with an M68060 and 128M RAM.
  > >   > > It runs NetBSD 4.0 at present.
  > >   > 
  > >   > Is this the machine identified by the following line from the Emacs 22
  > >   > configure file?
  > >   > 
  > >   >     case "${canonical}" in
  > >   >       alpha*-*-netbsd*) machine=alpha ;;
  > >   >       i[3456]86-*-netbsd*) machine=intel386 ;;
  > >   >       m68k-*-netbsd*)
  > >   >                 # This is somewhat bogus.
  > >   >                        machine=hp9000s300 ;;
  > 
  > Up to now, yes.
  > 
  > >   > If so, the file src/m/hp9000s300.h has been removed from CVS, but it may
  > >   > be feasible to restore it.  (Dan, could you check?)
  > > 
  > > I'd say it would be better to first try to see if CVS HEAD works with machine=m68k
  > > on that platform.
  > 
  > --- snip ---
  > Index: configure
  > ===================================================================
  > RCS file: /sources/emacs/emacs/configure,v
  > retrieving revision 1.305
  > diff -u -r1.305 configure
  > --- configure   9 Dec 2008 20:36:23 -0000       1.305
  > +++ configure   19 Jan 2009 18:16:02 -0000
  > @@ -2459,6 +2459,7 @@
  >        arm-*-netbsd*)   machine=arm ;;
  >        x86_64-*-netbsd*)        machine=amdx86-64 ;;
  >        hppa-*-netbsd*)  machine=hp800 ;;
  > +      m68k-*-netbsd*)  machine=m68k ;;
  >      esac
  >    ;;
  >  
  > --- snip ---
  > 
  > will build, and edit files just fine. Is there a test suite to probe the
  > resulting binary more closely?

I checked in a change like the above.




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

end of thread, other threads:[~2009-01-22  7:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-14 19:36 m68k--netbsdelf still in use S.P.Zeidler
2009-01-16 15:30 ` Chong Yidong
2009-01-17  6:57   ` Dan Nicolaescu
2009-01-19 18:42     ` S.P.Zeidler
2009-01-20  8:05       ` Dan Nicolaescu
2009-01-22  7:02       ` Dan Nicolaescu

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).