all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Building 24.3 on CentOS release 5.8 (Final)?
@ 2013-09-17 20:04 Tim Visher
  2013-09-17 20:36 ` Glenn Morris
  0 siblings, 1 reply; 3+ messages in thread
From: Tim Visher @ 2013-09-17 20:04 UTC (permalink / raw
  To: emacs

I'm trying to get emacs 24.3 installed. That means, afaict, that I
need to build it from source.

I followed these steps: http://pastebin.com/VYstcsYc

And am getting this error message: http://pastebin.com/UDGQnrwM

Thoughts?

--

In Christ,

Timmy V.

http://blog.twonegatives.com/
http://five.sentenc.es/ -- Spend less time on mail



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

* Re: Building 24.3 on CentOS release 5.8 (Final)?
  2013-09-17 20:04 Building 24.3 on CentOS release 5.8 (Final)? Tim Visher
@ 2013-09-17 20:36 ` Glenn Morris
  2013-09-18  1:59   ` Tim Visher
  0 siblings, 1 reply; 3+ messages in thread
From: Glenn Morris @ 2013-09-17 20:36 UTC (permalink / raw
  To: Tim Visher; +Cc: emacs

Tim Visher wrote:

> I'm trying to get emacs 24.3 installed. That means, afaict, that I
> need to build it from source.
>
> I followed these steps: http://pastebin.com/VYstcsYc

That's tiny, why not just include the text in your message?

FWIW:
You do not need autoconf to compile Emacs from a release tar file.
Nor do you need texinfo.
There's no point installing image libraries if you are going to
configure --without-x.

> And am getting this error message: http://pastebin.com/UDGQnrwM

  terminfo.c:50: undefined reference to `tparm'

IIRC, the solution might be 

  yum install ncurses-devel

(I think it's fixed in Emacs trunk.)

There's also

  yum-builddep emacs

as mentioned in INSTALL. Not sure it will work right in CentOS 5 though.




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

* Re: Building 24.3 on CentOS release 5.8 (Final)?
  2013-09-17 20:36 ` Glenn Morris
@ 2013-09-18  1:59   ` Tim Visher
  0 siblings, 0 replies; 3+ messages in thread
From: Tim Visher @ 2013-09-18  1:59 UTC (permalink / raw
  To: emacs

On Tue, Sep 17, 2013 at 4:36 PM, Glenn Morris <rgm@gnu.org> wrote:
> Tim Visher wrote:
>
>> I'm trying to get emacs 24.3 installed. That means, afaict, that I
>> need to build it from source.
>>
>> I followed these steps: http://pastebin.com/VYstcsYc
>
> That's tiny, why not just include the text in your message?

```
#!/usr/bin/env bash

yum -y groupinstall "Development Tools"

wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz

tar xzf ncurses-5.9.tar.gz

cd ncurses-5.9 && ./configure && make && make install

cd ~ && git clone git@github.com:timvisher/.emacs.d.git

wget http://ftpmirror.gnu.org/emacs/emacs-24.3.tar.gz

tar -xzf emacs-24.3.tar.gz

cd emacs-24.3

./configure --without-x && make && make install
```

https://gist.github.com/timvisher/6603207

>> And am getting this error message: http://pastebin.com/UDGQnrwM
>
>   terminfo.c:50: undefined reference to `tparm'
>
> IIRC, the solution might be
>
>   yum install ncurses-devel
>
> (I think it's fixed in Emacs trunk.)

This didn't work, but I was able to add the step in the script above
to directly download and build ncurses.

> There's also
>
>   yum-builddep emacs
>
> as mentioned in INSTALL. Not sure it will work right in CentOS 5 though.

I was unable to get this to work. It always failed with something
along the lines of `no package emacs.src is defined`.

Thanks for your help!

--

In Christ,

Timmy V.

http://blog.twonegatives.com/
http://five.sentenc.es/ -- Spend less time on mail



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

end of thread, other threads:[~2013-09-18  1:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-17 20:04 Building 24.3 on CentOS release 5.8 (Final)? Tim Visher
2013-09-17 20:36 ` Glenn Morris
2013-09-18  1:59   ` Tim Visher

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.