all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* emacs-21.4a.tar
@ 2006-08-31  4:49 Arun kumar
  2006-08-31  6:52 ` AW: emacs-21.4a.tar C.Strobl
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Arun kumar @ 2006-08-31  4:49 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 209 bytes --]

HI,

   I want to install emacs, so i downloaded  "emacs-21.4a.tar" from the ftp
site.

As i am new to this,let me know how should i proceed with to install this in
my solaris box..

Thanks in advance

arun.c

[-- Attachment #1.2: Type: text/html, Size: 357 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

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

* AW: emacs-21.4a.tar
  2006-08-31  4:49 emacs-21.4a.tar Arun kumar
@ 2006-08-31  6:52 ` C.Strobl
  2006-08-31 14:34 ` emacs-21.4a.tar Kevin Rodgers
  2006-09-01  8:18 ` emacs-21.4a.tar Eli Zaretskii
  2 siblings, 0 replies; 8+ messages in thread
From: C.Strobl @ 2006-08-31  6:52 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 4575 bytes --]

look at the email-faq
 
http://www.gnu.org/software/emacs/emacs.html#HelpFAQ
 
there you will find in section 7 the instructions i pasted below
 
greetings from munich
christian
 
7 Compiling and installing Emacs
********************************

7.1 How do I install Emacs?
===========================

   This answer is meant for users of Unix and Unix-like systems.  Users
of other operating systems should see the series of questions beginning
with *Note Emacs for MS-DOS::, which describe where to get non-Unix
source and binaries, and how to install Emacs on those systems.

   For Unix and Unix-like systems, the easiest way is often to compile
it from scratch.  You will need:

   * Emacs sources.  *Note Current GNU distributions::, for a list of
     ftp sites that make them available.  On `ftp.gnu.org', the main GNU
     distribution site, sources are available as

     `ftp://ftp.gnu.org/pub/gnu/emacs/emacs-21.1.tar.gz'

     The above will obviously change as new versions of Emacs come out.
     For instance, when Emacs 21.42 is released, it will most probably
     be available as

     `ftp://ftp.gnu.org/pub/gnu/emacs/emacs-21.42.tar.gz'

     Again, you should use one of the GNU mirror sites (see *Note
     Current GNU distributions::, and adjust the URL accordingly) so as
     to reduce load on `ftp.gnu.org'.

   * `gzip', the GNU compression utility.  You can get `gzip' via
     anonymous ftp at mirrors of `ftp.gnu.org' sites; it should compile
     and install without much trouble on most systems.  Once you have
     retrieved the Emacs sources, you will probably be able to
     uncompress them with the command

          gunzip --verbose emacs-21.1.tar.gz

     changing the Emacs version (21.1), as necessary.  Once `gunzip'
     has finished doing its job, a file by the name of `emacs-21.1.tar'
     should be in your build directory.

   * `tar', the "tape archiving" program, which moves multiple files
     into and out of archive files, or "tarfiles".  All of the files
     comprising the Emacs source come in a single tarfile, and must be
     extracted using `tar' before you can build Emacs.  Typically, the
     extraction command would look like

          tar -xvvf emacs-21.1.tar

     The `x' indicates that we want to extract files from this tarfile,
     the two `v's force verbose output, and the `f' tells `tar' to use
     a disk file, rather than one on the tape drive.

     If you're using GNU `tar' (available at mirrors of `ftp.gnu.org'),
     you can combine this step and the previous one by using the command

          tar -zxvvf emacs-21.1.tar.gz

     The additional `z' at the beginning of the options list tells GNU
     `tar' to uncompress the file with `gunzip' before extracting the
     tarfile's components.


   At this point, the Emacs sources (all 70+ megabytes of them) should
be sitting in a directory called `emacs-21.1'.  On most common Unix and
Unix-like systems, you should be able to compile Emacs (with X Window
system support) with the following commands:

     cd emacs-21.1       # change directory to emacs-21.1
     ./configure         # configure Emacs for your particular system
     make                # use Makefile to build components, then Emacs

   If the `make' completes successfully, the odds are fairly good that
the build has gone well.  (*Note Problems building Emacs::, if you
weren't successful.)

   By default, Emacs is installed in the following directories:

`/usr/local/bin'
     binaries.

`/usr/local/share/emacs/21.1'
     Lisp code and support files.

`/usr/local/info'
     Info documentation.

   To install files in those default directories, become the superuser
and type

     make install

   Note that `make install' will overwrite `/usr/local/bin/emacs' and
any Emacs Info files that might be in `/usr/local/info'.

   Much more verbose instructions (with many more hints and suggestions)
come with the Emacs sources, in the file `INSTALL'.

________________________________

Von: help-gnu-emacs-bounces+c.strobl=dlr.de@gnu.org
[mailto:help-gnu-emacs-bounces+c.strobl=dlr.de@gnu.org] Im Auftrag von
Arun kumar
Gesendet: Donnerstag, 31. August 2006 06:49
An: help-gnu-emacs@gnu.org
Betreff: emacs-21.4a.tar


HI,
 
   I want to install emacs, so i downloaded  "emacs-21.4a.tar" from the
ftp site.
 
As i am new to this,let me know how should i proceed with to install
this in my solaris box..
 
Thanks in advance
 
arun.c

[-- Attachment #1.2: Type: text/html, Size: 6203 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

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

* Re: emacs-21.4a.tar
  2006-08-31  4:49 emacs-21.4a.tar Arun kumar
  2006-08-31  6:52 ` AW: emacs-21.4a.tar C.Strobl
@ 2006-08-31 14:34 ` Kevin Rodgers
  2006-09-01  8:18 ` emacs-21.4a.tar Eli Zaretskii
  2 siblings, 0 replies; 8+ messages in thread
From: Kevin Rodgers @ 2006-08-31 14:34 UTC (permalink / raw)


Arun kumar wrote:
>    I want to install emacs, so i downloaded  "emacs-21.4a.tar" from the 
> ftp site.
>  
> As i am new to this,let me know how should i proceed with to install 
> this in my solaris box..

For an alternative to compiling Emacs (and many other free or open
source software packages) from source on Solaris, consider using
pkg-get (http://www.bolthole.com/solaris/pkg-get.html) to get
binaries from http://www.blastwave.org/

-- 
Kevin

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

* Re: emacs-21.4a.tar
  2006-08-31  4:49 emacs-21.4a.tar Arun kumar
  2006-08-31  6:52 ` AW: emacs-21.4a.tar C.Strobl
  2006-08-31 14:34 ` emacs-21.4a.tar Kevin Rodgers
@ 2006-09-01  8:18 ` Eli Zaretskii
  2006-09-01  9:04   ` emacs-21.4a.tar Arun kumar
  2 siblings, 1 reply; 8+ messages in thread
From: Eli Zaretskii @ 2006-09-01  8:18 UTC (permalink / raw)


> Date: Thu, 31 Aug 2006 10:19:26 +0530
> From: "Arun kumar" <arun.chellam@gmail.com>
> 
>    I want to install emacs, so i downloaded  "emacs-21.4a.tar" from the ftp
> site.
> 
> As i am new to this,let me know how should i proceed with to install this in
> my solaris box..

Unpack it like this:

       gunzip -c emacs-21.4a.tar.gz | tar xf -

Then read the file emacs-21.4/INSTALL, which explains how to build
and install Emacs.

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

* Re: emacs-21.4a.tar
  2006-09-01  8:18 ` emacs-21.4a.tar Eli Zaretskii
@ 2006-09-01  9:04   ` Arun kumar
  2006-09-01  9:26     ` emacs-21.4a.tar Eli Zaretskii
  0 siblings, 1 reply; 8+ messages in thread
From: Arun kumar @ 2006-09-01  9:04 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 1337 bytes --]

Hi,
  I downloaded the emacs-21.4, untared it nad tried to configure by using $
./configure.But i got the below error"*configure: error: can not find
sources in . or .." *
. Plz let me know about it ..

bash-2.03$ ls
aclocal.m4      confdefs.h      config.sub      INSTALL
make-dist       README          vpath.sed
AUTHORS         config.bat      configure       install-sh      Makefile.in
site-lisp
BUGS            config.guess    configure.in    leim
mkinstalldirs   src
ChangeLog       config.log      FTP             lisp
move-if-change  update-subdirs

*bash-2.03$ ./configure
configure: error: can not find sources in . or ..*
Thanks in advance
arun.c


On 9/1/06, Eli Zaretskii <eliz@gnu.org> wrote:
>
> > Date: Thu, 31 Aug 2006 10:19:26 +0530
> > From: "Arun kumar" <arun.chellam@gmail.com>
> >
> >    I want to install emacs, so i downloaded  "emacs-21.4a.tar" from the
> ftp
> > site.
> >
> > As i am new to this,let me know how should i proceed with to install
> this in
> > my solaris box..
>
> Unpack it like this:
>
>       gunzip -c emacs-21.4a.tar.gz | tar xf -
>
> Then read the file emacs-21.4/INSTALL, which explains how to build
> and install Emacs.
>
>
> _______________________________________________
> help-gnu-emacs mailing list
> help-gnu-emacs@gnu.org
> http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
>

[-- Attachment #1.2: Type: text/html, Size: 2765 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

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

* Re: emacs-21.4a.tar
  2006-09-01  9:04   ` emacs-21.4a.tar Arun kumar
@ 2006-09-01  9:26     ` Eli Zaretskii
  2006-09-01 11:47       ` emacs-21.4a.tar Arun kumar
  0 siblings, 1 reply; 8+ messages in thread
From: Eli Zaretskii @ 2006-09-01  9:26 UTC (permalink / raw)


> Date: Fri, 1 Sep 2006 14:34:43 +0530
> From: "Arun kumar" <arun.chellam@gmail.com>
> 
>   I downloaded the emacs-21.4, untared it nad tried to configure by using $
> ./configure.But i got the below error"*configure: error: can not find
> sources in . or .." *
> . Plz let me know about it ..

It looks for the file src/lisp.h.  Do you have it?  If not, something
went wrong during unpacking.

If the file src/lisp.h does exist, try this command instead:

   /path/to/emacs-dir/configure --srcdir=/path/to/emacs-dir

where /path/to/emacs-dir is the absolute file name of the directory
created by unpacking the Emacs distribution.

If that doesn't work either, post here the contents of the file
config.log.

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

* Re: emacs-21.4a.tar
  2006-09-01  9:26     ` emacs-21.4a.tar Eli Zaretskii
@ 2006-09-01 11:47       ` Arun kumar
  2006-09-01 14:35         ` emacs-21.4a.tar Kevin Rodgers
  0 siblings, 1 reply; 8+ messages in thread
From: Arun kumar @ 2006-09-01 11:47 UTC (permalink / raw)
  Cc: help-gnu-emacs, Geetha Thanu


[-- Attachment #1.1: Type: text/plain, Size: 1471 bytes --]

I downloaded emacs again and unpacked the tar.. now ./config is working
fine. But after make install, i saw some problems. i followed the following
steps

1) ./configure  (worked fine)
2 ) make         (compiled fine)
3) make install ( permission denied ..)
    Permission denied for some files...
so i entered as Super User..
and again i executed "make install"  but the error is

"make: command not found"

But i can see the MakeFile there , but why make install is not executed in
SU mode..

Regards
arun.c



On 9/1/06, Eli Zaretskii <eliz@gnu.org> wrote:
>
> > Date: Fri, 1 Sep 2006 14:34:43 +0530
> > From: "Arun kumar" <arun.chellam@gmail.com>
> >
> >   I downloaded the emacs-21.4, untared it nad tried to configure by
> using $
> > ./configure.But i got the below error"*configure: error: can not find
> > sources in . or .." *
> > . Plz let me know about it ..
>
> It looks for the file src/lisp.h.  Do you have it?  If not, something
> went wrong during unpacking.
>
> If the file src/lisp.h does exist, try this command instead:
>
>   /path/to/emacs-dir/configure --srcdir=/path/to/emacs-dir
>
> where /path/to/emacs-dir is the absolute file name of the directory
> created by unpacking the Emacs distribution.
>
> If that doesn't work either, post here the contents of the file
> config.log.
>
>
> _______________________________________________
> help-gnu-emacs mailing list
> help-gnu-emacs@gnu.org
> http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
>

[-- Attachment #1.2: Type: text/html, Size: 2314 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

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

* Re: emacs-21.4a.tar
  2006-09-01 11:47       ` emacs-21.4a.tar Arun kumar
@ 2006-09-01 14:35         ` Kevin Rodgers
  0 siblings, 0 replies; 8+ messages in thread
From: Kevin Rodgers @ 2006-09-01 14:35 UTC (permalink / raw)


Arun kumar wrote:
> I downloaded emacs again and unpacked the tar.. now ./config is working 
> fine. But after make install, i saw some problems. i followed the 
> following steps
>  
> 1) ./configure  (worked fine)
> 2 ) make         (compiled fine)
> 3) make install ( permission denied ..)
>     Permission denied for some files...
> so i entered as Super User..
> and again i executed "make install"  but the error is
>  
> "make: command not found"
>  
> But i can see the MakeFile there , but why make install is not executed 
> in SU mode..

Because the directory where the make executable file is, is not in
root's PATH.

-- 
Kevin

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

end of thread, other threads:[~2006-09-01 14:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-31  4:49 emacs-21.4a.tar Arun kumar
2006-08-31  6:52 ` AW: emacs-21.4a.tar C.Strobl
2006-08-31 14:34 ` emacs-21.4a.tar Kevin Rodgers
2006-09-01  8:18 ` emacs-21.4a.tar Eli Zaretskii
2006-09-01  9:04   ` emacs-21.4a.tar Arun kumar
2006-09-01  9:26     ` emacs-21.4a.tar Eli Zaretskii
2006-09-01 11:47       ` emacs-21.4a.tar Arun kumar
2006-09-01 14:35         ` emacs-21.4a.tar Kevin Rodgers

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.