* Bug#451178: emacs22: FTBFS on GNU/kFreeBSD [not found] <Pine.LNX.4.62.0711132338000.28911@sci.felk.cvut.cz> @ 2007-11-24 0:49 ` Rob Browning 2007-11-24 22:06 ` Richard Stallman 0 siblings, 1 reply; 8+ messages in thread From: Rob Browning @ 2007-11-24 0:49 UTC (permalink / raw) To: bug-gnu-emacs; +Cc: 451178, 451178-forwarded, Petr Salinger (If possible, please preserve the 451178-forwarded@bugs.debian.org address in any replies.) What follows is a request to add support for GNU/kFreeBSD. Thanks Petr Salinger <Petr.Salinger@seznam.cz> writes: > Hi, > > the current version fails to build on GNU/kFreeBSD. > > It needs small tweak to configure.in/configure > and related new opsys file. > Please apply attached patch and regenerate configure. > > It would also be nice if you can ask upstream > to include this changes. > > Thanks in advance > > Petr > > > * apply and regenerate configure by autoconf > > only in patch2: > unchanged: > --- emacs22-22.1+1.orig/configure.in > +++ emacs22-22.1+1/configure.in > @@ -249,6 +249,19 @@ > esac > ;; > > + ## FreeBSD kenrel + glibc based userland > + *-*-kfreebsd*gnu* ) > + opsys=gnu-kfreebsd > + case "${canonical}" in > + alpha*-*-kfreebsd*) machine=alpha ;; > + ia64-*-kfreebsd*) machine=ia64 ;; > + sparc64-*-kfreebsd*) machine=sparc ;; > + powerpc-*-kfreebsd*) machine=macppc ;; > + i[3456]86-*-kfreebsd*) machine=intel386 ;; > + amd64-*-kfreebsd*|x86_64-*-kfreebsd*) machine=amdx86-64 ;; > + esac > + ;; > + > ## NetBSD ports > *-*-netbsd* ) > opsys=netbsd > only in patch2: > unchanged: > --- emacs22-22.1+1.orig/src/s/gnu-kfreebsd.h > +++ emacs22-22.1+1/src/s/gnu-kfreebsd.h > @@ -0,0 +1,10 @@ > + > +#include "gnu-linux.h" > + > +/* SYSTEM_TYPE should indicate the kind of system you are using. > + It sets the Lisp variable system-type. */ > +#undef SYSTEM_TYPE > +#define SYSTEM_TYPE "gnu/kfreebsd" /* All the best software is free. */ > + > +#define NO_TERMIO /* use only <termios.h> */ > + -- Rob Browning rlb @defaultvalue.org and @debian.org; previously @cs.utexas.edu GPG as of 2002-11-03 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Bug#451178: emacs22: FTBFS on GNU/kFreeBSD 2007-11-24 0:49 ` Bug#451178: emacs22: FTBFS on GNU/kFreeBSD Rob Browning @ 2007-11-24 22:06 ` Richard Stallman 2007-11-28 8:24 ` Glenn Morris 0 siblings, 1 reply; 8+ messages in thread From: Richard Stallman @ 2007-11-24 22:06 UTC (permalink / raw) To: emacs-devel; +Cc: Rob Browning Would someone please install this tiny change, and ack? To: bug-gnu-emacs@gnu.org From: Rob Browning <rlb@defaultvalue.org> Date: Fri, 23 Nov 2007 16:49:40 -0800 In-Reply-To: <Pine.LNX.4.62.0711132338000.28911@sci.felk.cvut.cz> (Petr Salinger's message of "Tue\, 13 Nov 2007 23\:41\:25 +0100 \(CET\)") Message-ID: <87oddk8o2j.fsf@raven.defaultvalue.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: 451178@bugs.debian.org, 451178-forwarded@bugs.debian.org, Petr Salinger <Petr.Salinger@seznam.cz> Subject: Re: Bug#451178: emacs22: FTBFS on GNU/kFreeBSD (If possible, please preserve the 451178-forwarded@bugs.debian.org address in any replies.) What follows is a request to add support for GNU/kFreeBSD. Thanks Petr Salinger <Petr.Salinger@seznam.cz> writes: > Hi, > > the current version fails to build on GNU/kFreeBSD. > > It needs small tweak to configure.in/configure > and related new opsys file. > Please apply attached patch and regenerate configure. > > It would also be nice if you can ask upstream > to include this changes. > > Thanks in advance > > Petr > > > * apply and regenerate configure by autoconf > > only in patch2: > unchanged: > --- emacs22-22.1+1.orig/configure.in > +++ emacs22-22.1+1/configure.in > @@ -249,6 +249,19 @@ > esac > ;; > > + ## FreeBSD kenrel + glibc based userland > + *-*-kfreebsd*gnu* ) > + opsys=gnu-kfreebsd > + case "${canonical}" in > + alpha*-*-kfreebsd*) machine=alpha ;; > + ia64-*-kfreebsd*) machine=ia64 ;; > + sparc64-*-kfreebsd*) machine=sparc ;; > + powerpc-*-kfreebsd*) machine=macppc ;; > + i[3456]86-*-kfreebsd*) machine=intel386 ;; > + amd64-*-kfreebsd*|x86_64-*-kfreebsd*) machine=amdx86-64 ;; > + esac > + ;; > + > ## NetBSD ports > *-*-netbsd* ) > opsys=netbsd > only in patch2: > unchanged: > --- emacs22-22.1+1.orig/src/s/gnu-kfreebsd.h > +++ emacs22-22.1+1/src/s/gnu-kfreebsd.h > @@ -0,0 +1,10 @@ > + > +#include "gnu-linux.h" > + > +/* SYSTEM_TYPE should indicate the kind of system you are using. > + It sets the Lisp variable system-type. */ > +#undef SYSTEM_TYPE > +#define SYSTEM_TYPE "gnu/kfreebsd" /* All the best software is free. */ > + > +#define NO_TERMIO /* use only <termios.h> */ > + -- Rob Browning rlb @defaultvalue.org and @debian.org; previously @cs.utexas.edu GPG as of 2002-11-03 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Bug#451178: emacs22: FTBFS on GNU/kFreeBSD 2007-11-24 22:06 ` Richard Stallman @ 2007-11-28 8:24 ` Glenn Morris 2007-11-28 17:34 ` Sven Joachim 2007-11-29 7:28 ` Rob Browning 0 siblings, 2 replies; 8+ messages in thread From: Glenn Morris @ 2007-11-28 8:24 UTC (permalink / raw) To: rms; +Cc: Rob Browning, emacs-devel Richard Stallman wrote: > Would someone please install this tiny change, and ack? ack > To: bug-gnu-emacs@gnu.org > From: Rob Browning <rlb@defaultvalue.org> > Date: Fri, 23 Nov 2007 16:49:40 -0800 [...] > Subject: Re: Bug#451178: emacs22: FTBFS on GNU/kFreeBSD ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Bug#451178: emacs22: FTBFS on GNU/kFreeBSD 2007-11-28 8:24 ` Glenn Morris @ 2007-11-28 17:34 ` Sven Joachim 2007-11-28 19:06 ` Glenn Morris 2007-11-29 7:28 ` Rob Browning 1 sibling, 1 reply; 8+ messages in thread From: Sven Joachim @ 2007-11-28 17:34 UTC (permalink / raw) To: Glenn Morris; +Cc: rms, Rob Browning, emacs-devel On 2007-11-28 09:24 +0100, Glenn Morris wrote: > Richard Stallman wrote: > >> Would someone please install this tiny change, and ack? > > ack Don't forget to regenerate `configure'. Thanks, Sven ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Bug#451178: emacs22: FTBFS on GNU/kFreeBSD 2007-11-28 17:34 ` Sven Joachim @ 2007-11-28 19:06 ` Glenn Morris 2007-11-29 6:54 ` Jan Djärv 0 siblings, 1 reply; 8+ messages in thread From: Glenn Morris @ 2007-11-28 19:06 UTC (permalink / raw) To: Sven Joachim; +Cc: rms, Rob Browning, emacs-devel Sven Joachim wrote: > Don't forget to regenerate `configure'. I never understand the rush to regenerate configure. It gets regenerated before a release/pretest, and IMO anyone building from CVS should be in the habit of running autoconf. ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Bug#451178: emacs22: FTBFS on GNU/kFreeBSD 2007-11-28 19:06 ` Glenn Morris @ 2007-11-29 6:54 ` Jan Djärv 2007-11-29 7:29 ` Glenn Morris 0 siblings, 1 reply; 8+ messages in thread From: Jan Djärv @ 2007-11-29 6:54 UTC (permalink / raw) To: Glenn Morris; +Cc: emacs-devel, Sven Joachim, Rob Browning, rms Glenn Morris skrev: > Sven Joachim wrote: > >> Don't forget to regenerate `configure'. > > I never understand the rush to regenerate configure. It gets > regenerated before a release/pretest, and IMO anyone building from CVS > should be in the habit of running autoconf. > Not really feasible. I'm usually testing on different OS:es and versions, and some don't have the required autoconf version. I can go to an OS with the required autoconf, regenerate and copy configure to the other places, but it is more convinient to just do cvs up. Jan D. ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Bug#451178: emacs22: FTBFS on GNU/kFreeBSD 2007-11-29 6:54 ` Jan Djärv @ 2007-11-29 7:29 ` Glenn Morris 0 siblings, 0 replies; 8+ messages in thread From: Glenn Morris @ 2007-11-29 7:29 UTC (permalink / raw) To: Jan Djärv; +Cc: emacs-devel, Sven Joachim, Rob Browning, rms Jan Djärv wrote: > Not really feasible. I'm usually testing on different OS:es and > versions, and some don't have the required autoconf version. I can > go to an OS with the required autoconf, regenerate and copy > configure to the other places, but it is more convinient to just do > cvs up. Fair point; regenerated. ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Bug#451178: emacs22: FTBFS on GNU/kFreeBSD 2007-11-28 8:24 ` Glenn Morris 2007-11-28 17:34 ` Sven Joachim @ 2007-11-29 7:28 ` Rob Browning 1 sibling, 0 replies; 8+ messages in thread From: Rob Browning @ 2007-11-29 7:28 UTC (permalink / raw) To: Glenn Morris; +Cc: rms, emacs-devel Glenn Morris <rgm@gnu.org> writes: > Richard Stallman wrote: > >> Would someone please install this tiny change, and ack? > > ack Thanks for the help. -- Rob Browning rlb @defaultvalue.org and @debian.org; previously @cs.utexas.edu GPG as of 2002-11-03 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4 ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2007-11-29 7:29 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <Pine.LNX.4.62.0711132338000.28911@sci.felk.cvut.cz> 2007-11-24 0:49 ` Bug#451178: emacs22: FTBFS on GNU/kFreeBSD Rob Browning 2007-11-24 22:06 ` Richard Stallman 2007-11-28 8:24 ` Glenn Morris 2007-11-28 17:34 ` Sven Joachim 2007-11-28 19:06 ` Glenn Morris 2007-11-29 6:54 ` Jan Djärv 2007-11-29 7:29 ` Glenn Morris 2007-11-29 7:28 ` Rob Browning
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/emacs.git https://git.savannah.gnu.org/cgit/emacs/org-mode.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.