all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* n00b installing 24.4
@ 2014-10-22 19:44 Steven Arntson
  2014-10-22 19:53 ` Dale Snell
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Steven Arntson @ 2014-10-22 19:44 UTC (permalink / raw
  To: help-gnu-emacs

I've been using emacs 24.3.1 with Ubuntu 14.04, and generally doing
fine. I downloaded 24.4, and ran ./configure, and got the following
warnings about missing libraries:

|checking for libXaw... configure: error: No X toolkit could be found.

and:

|configure: error: The following required libraries were not found:
|    libXpm libjpeg libpng libgif/libungif libtiff
|Maybe some development libraries/packages are missing?
|If you don't want to link with them give
|    --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no
|    --with-tiff=no

Seeing "jpeg" and "png" makes me think this is some pretty normal stuff
that is probably on my computer somewhere, but the installer can't find
them, but I also do not know how to find them!

Thank you in advance for any help.
Best,
steven arntson




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

* Re: n00b installing 24.4
  2014-10-22 19:44 n00b installing 24.4 Steven Arntson
@ 2014-10-22 19:53 ` Dale Snell
  2014-10-22 19:53 ` Paul Smith
  2014-10-22 20:00 ` Glenn Morris
  2 siblings, 0 replies; 5+ messages in thread
From: Dale Snell @ 2014-10-22 19:53 UTC (permalink / raw
  To: help-gnu-emacs

[-- Attachment #1: Type: text/plain, Size: 1307 bytes --]

On Wed, 22 Oct 2014 12:44:13 -0700
Steven Arntson <steven@stevenarntson.com> wrote:

> I've been using emacs 24.3.1 with Ubuntu 14.04, and generally doing
> fine. I downloaded 24.4, and ran ./configure, and got the following
> warnings about missing libraries:
> 
> |checking for libXaw... configure: error: No X toolkit could be found.
> 
> and:
> 
> |configure: error: The following required libraries were not found:
> |    libXpm libjpeg libpng libgif/libungif libtiff
> |Maybe some development libraries/packages are missing?
> |If you don't want to link with them give
> |    --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no
> |    --with-tiff=no
> 
> Seeing "jpeg" and "png" makes me think this is some pretty normal
> stuff that is probably on my computer somewhere, but the installer
> can't find them, but I also do not know how to find them!

You undoubtedly do have normal libraries.  What you are probably
missing are the -devel (-dev on Ubuntu/Debian?) packages.  These have
the proper header files and whatnot to allow you to compile programs
that use those libraries.

Hope this helps.

--Dale

-- 
"Shambling, drooling, bent on destruction and biting people's
heads off... it's either zombies or upper management."
    -- Ebenezer Dusk, Esquire


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

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

* Re: n00b installing 24.4
  2014-10-22 19:44 n00b installing 24.4 Steven Arntson
  2014-10-22 19:53 ` Dale Snell
@ 2014-10-22 19:53 ` Paul Smith
  2014-10-22 20:00 ` Glenn Morris
  2 siblings, 0 replies; 5+ messages in thread
From: Paul Smith @ 2014-10-22 19:53 UTC (permalink / raw
  To: Steven Arntson; +Cc: help-gnu-emacs

On Wed, 2014-10-22 at 12:44 -0700, Steven Arntson wrote:
> I've been using emacs 24.3.1 with Ubuntu 14.04, and generally doing
> fine. I downloaded 24.4, and ran ./configure, and got the following
> warnings about missing libraries:
> 
> |checking for libXaw... configure: error: No X toolkit could be found.
> 
> and:
> 
> |configure: error: The following required libraries were not found:
> |    libXpm libjpeg libpng libgif/libungif libtiff
> |Maybe some development libraries/packages are missing?
> |If you don't want to link with them give
> |    --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no
> |    --with-tiff=no
> 
> Seeing "jpeg" and "png" makes me think this is some pretty normal stuff
> that is probably on my computer somewhere, but the installer can't find
> them, but I also do not know how to find them!

Most GNU/Linux distributions these days will split up libraries into two
different packages: a runtime package which contains the files you need
to run already-built binaries, and a developer package which contains
the files you need to build new binaries using those libraries.

If you've used Emacs on your system before, you definitely have the
former.  If you've not built any programs that require them, you almost
certainly don't have the latter.

The way to get these, and their names, varies from distribution to
distribution.  On Debian-derived distributions like Ubuntu the packages
usually have a "-dev" extension.  So, for example:

  $ apt-cache search 'libpng.*-dev'
  libpng12-dev - PNG library - development
  libpng++-dev - C++ interface to the PNG (Portable Network Graphics) library
  libpnglite-dev - lightweight C library for loading and writing PNG images

The first one is the one you want, so you'd run:

  $ sudo apt-get install libpng12-dev

And etc. for the other packages.

You can probably search the internet and find detailed instructions for
compiling Emacs on Ubuntu.




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

* Re: n00b installing 24.4
  2014-10-22 19:44 n00b installing 24.4 Steven Arntson
  2014-10-22 19:53 ` Dale Snell
  2014-10-22 19:53 ` Paul Smith
@ 2014-10-22 20:00 ` Glenn Morris
  2014-10-22 21:11   ` Steven Arntson
  2 siblings, 1 reply; 5+ messages in thread
From: Glenn Morris @ 2014-10-22 20:00 UTC (permalink / raw
  To: Steven Arntson; +Cc: help-gnu-emacs


The INSTALL file suggests to use:

  sudo apt-get build-dep emacs24

on Debian-based systems (like Ubuntu).



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

* Re: n00b installing 24.4
  2014-10-22 20:00 ` Glenn Morris
@ 2014-10-22 21:11   ` Steven Arntson
  0 siblings, 0 replies; 5+ messages in thread
From: Steven Arntson @ 2014-10-22 21:11 UTC (permalink / raw
  To: help-gnu-emacs

Glenn Morris <rgm@gnu.org> writes:

> The INSTALL file suggests to use:
>
>   sudo apt-get build-dep emacs24
>
> on Debian-based systems (like Ubuntu).

I did this, and it worked great. Thank you!




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

end of thread, other threads:[~2014-10-22 21:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-22 19:44 n00b installing 24.4 Steven Arntson
2014-10-22 19:53 ` Dale Snell
2014-10-22 19:53 ` Paul Smith
2014-10-22 20:00 ` Glenn Morris
2014-10-22 21:11   ` Steven Arntson

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.