public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
From: mh@mike.franken.de (Michael Hirmke)
To: cygwin@sourceware.cygnus.com
Subject: Re: g++ is not complete
Date: Tue, 09 Mar 1999 14:47:00 -0000	[thread overview]
Message-ID: <7CXHqDQ4pfB@mike.franken.de> (raw)
In-Reply-To: < Pine.LNX.3.95.990309134603.6885A-100000@cheetah.zsp.com >

Hi Chandra,

[...]
>
>I am used to vi editor and seems like vi is not available too.

Perhaps this helps a bit:

------------------------< snip snip snip >-----------------------------

   *vim-5.3*
   -------

   - what is it?
     - Vim (Vi Improved) is an almost compatible version of the UNIX
       editor vi whereby almost every possible command can be performed
       using only ASCII characters. Only the 'Q' command is missing
       (you don't need it). Many new features have been added: multi
       level undo, command line history, filename completion, block
       operations, editing of binary data, etc. Vi is available for
       the AMIGA, MS-DOS, Windows NT, and various versions of UNIX.

   - system
     - Windows NT4 German / SP3

   - Cygwin
     - for B20
     - binary mounts only
     - CYGWIN=title strip_title binmode glob tty
   
   - preliminaries
     - you first have to install *ncurses-4.x*, if you want vim to
       run in another terminal mode than the builtin ones
     - you first have to install *X11R6.3*, if you want vim with
       X11 GUI support
     - get the source packages
       - vim-5.3-src.tar.gz (the source code)
       - vim-5.3-rt.tar.gz (the so called runtime system)
       somewhere from the net or your favourite Linux distribution

   - configure
     - works without changes with these parameters:
       ./configure \
          --prefix=/usr/local \
          --disable-perlinterp \
          --disable-pythoninterp

       or for a vim without any GUI support
       ./configure \
          --prefix=/usr/local \
          --disable-perlinterp \
          --disable-pythoninterp \
          --disable-gui \
          --without-x

   - make
     - works without changes

   - make install
     - you have to create a few directories first - no idea, why they
       are not created automatically !?!?
       - mkdir -p <prefix>/share/vim/doc
       - mkdir -p <prefix>/share/vim/syntax
       - mkdir -p <prefix>/share/vim/macros
     - export SUFFIX=.exe
     - now "make install" runs without further problems
     
     - you can use the following script for all the steps above:

       --------------------< snip snip snip >--------------------------
       #!/bin/sh
       
       set -x
       
       pref=/usr/local
       mode=nogui
       
       case "$mode" in
       nogui)
         cfgopts=" \
           --prefix=$pref \
           --disable-cscope \
           --disable-perlinterp \
           --disable-pythoninterp \
           --disable-tclinterp \
           --disable-gui \
           --without-x \
         "
         ;;
       gui)
         cfgopts=" \
           --prefix=$pref \
           --disable-cscope \
           --disable-perlinterp \
           --disable-pythoninterp \
           --disable-tclinterp \
         "
         ;;
       esac
       
       ./configure $cfgopts && \
       
       make && \
       
       mkdir -p $pref/share/vim/doc && \
       mkdir -p $pref/share/vim/syntax && \
       mkdir -p $pref/share/vim/macros && \
       
       export SUFFIX=.exe && \
       make install
       --------------------< snip snip snip >--------------------------

   - notes
     - if the X11R6.3 package is installed, you get GUI support, too;
       the process for building the package is the same, though

   - package availability
     - on ftp.franken.de
     - in /pub/win32/develop/gnuwin32/cygwin/porters/Hirmke_Michael/B20
     - or vim-5.3-cygwin-b20-builtin-term-bin.tar.gz
     - or vim-5.3-cygwin-b20-builtin-term-bin.zip
     - or vim-5.3-cygwin-b20-without-gui-bin.tar.gz
     - or vim-5.3-cygwin-b20-without-gui-bin.zip
     (- or vim-5.3-cygwin-b20-with-gui-bin.tar.gz)
     (- or vim-5.3-cygwin-b20-with-gui-bin.zip)

   - contributed by
     - mh@mike.franken.de (Michael Hirmke)

------------------------< snip snip snip >-----------------------------

>
>Please get back to me as soon as possible.
>
>Thanks
>Chandra

Bye.
Michael.
--
Michael Hirmke           | Telefon +49 (911) 557999
Georg-Strobel-Strasse 81 | FAX     +49 (911) 557664
90489 Nuernberg          | E-Mail  mailto:mh@mike.franken.de
                         | WWW     http://aquarius.franken.de/

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

WARNING: multiple messages have this Message-ID
From: mh@mike.franken.de (Michael Hirmke)
To: cygwin@sourceware.cygnus.com
Subject: Re: g++ is not complete
Date: Wed, 31 Mar 1999 19:45:00 -0000	[thread overview]
Message-ID: <7CXHqDQ4pfB@mike.franken.de> (raw)
Message-ID: <19990331194500.WvEm3Ns_IvRNRxbC889Hc-rq43tCyk1Uh9R3cuIvnWM@z> (raw)
In-Reply-To: <Pine.LNX.3.95.990309134603.6885A-100000@cheetah.zsp.com>

Hi Chandra,

[...]
>
>I am used to vi editor and seems like vi is not available too.

Perhaps this helps a bit:

------------------------< snip snip snip >-----------------------------

   *vim-5.3*
   -------

   - what is it?
     - Vim (Vi Improved) is an almost compatible version of the UNIX
       editor vi whereby almost every possible command can be performed
       using only ASCII characters. Only the 'Q' command is missing
       (you don't need it). Many new features have been added: multi
       level undo, command line history, filename completion, block
       operations, editing of binary data, etc. Vi is available for
       the AMIGA, MS-DOS, Windows NT, and various versions of UNIX.

   - system
     - Windows NT4 German / SP3

   - Cygwin
     - for B20
     - binary mounts only
     - CYGWIN=title strip_title binmode glob tty
   
   - preliminaries
     - you first have to install *ncurses-4.x*, if you want vim to
       run in another terminal mode than the builtin ones
     - you first have to install *X11R6.3*, if you want vim with
       X11 GUI support
     - get the source packages
       - vim-5.3-src.tar.gz (the source code)
       - vim-5.3-rt.tar.gz (the so called runtime system)
       somewhere from the net or your favourite Linux distribution

   - configure
     - works without changes with these parameters:
       ./configure \
          --prefix=/usr/local \
          --disable-perlinterp \
          --disable-pythoninterp

       or for a vim without any GUI support
       ./configure \
          --prefix=/usr/local \
          --disable-perlinterp \
          --disable-pythoninterp \
          --disable-gui \
          --without-x

   - make
     - works without changes

   - make install
     - you have to create a few directories first - no idea, why they
       are not created automatically !?!?
       - mkdir -p <prefix>/share/vim/doc
       - mkdir -p <prefix>/share/vim/syntax
       - mkdir -p <prefix>/share/vim/macros
     - export SUFFIX=.exe
     - now "make install" runs without further problems
     
     - you can use the following script for all the steps above:

       --------------------< snip snip snip >--------------------------
       #!/bin/sh
       
       set -x
       
       pref=/usr/local
       mode=nogui
       
       case "$mode" in
       nogui)
         cfgopts=" \
           --prefix=$pref \
           --disable-cscope \
           --disable-perlinterp \
           --disable-pythoninterp \
           --disable-tclinterp \
           --disable-gui \
           --without-x \
         "
         ;;
       gui)
         cfgopts=" \
           --prefix=$pref \
           --disable-cscope \
           --disable-perlinterp \
           --disable-pythoninterp \
           --disable-tclinterp \
         "
         ;;
       esac
       
       ./configure $cfgopts && \
       
       make && \
       
       mkdir -p $pref/share/vim/doc && \
       mkdir -p $pref/share/vim/syntax && \
       mkdir -p $pref/share/vim/macros && \
       
       export SUFFIX=.exe && \
       make install
       --------------------< snip snip snip >--------------------------

   - notes
     - if the X11R6.3 package is installed, you get GUI support, too;
       the process for building the package is the same, though

   - package availability
     - on ftp.franken.de
     - in /pub/win32/develop/gnuwin32/cygwin/porters/Hirmke_Michael/B20
     - or vim-5.3-cygwin-b20-builtin-term-bin.tar.gz
     - or vim-5.3-cygwin-b20-builtin-term-bin.zip
     - or vim-5.3-cygwin-b20-without-gui-bin.tar.gz
     - or vim-5.3-cygwin-b20-without-gui-bin.zip
     (- or vim-5.3-cygwin-b20-with-gui-bin.tar.gz)
     (- or vim-5.3-cygwin-b20-with-gui-bin.zip)

   - contributed by
     - mh@mike.franken.de (Michael Hirmke)

------------------------< snip snip snip >-----------------------------

>
>Please get back to me as soon as possible.
>
>Thanks
>Chandra

Bye.
Michael.
--
Michael Hirmke           | Telefon +49 (911) 557999
Georg-Strobel-Strasse 81 | FAX     +49 (911) 557664
90489 Nuernberg          | E-Mail  mailto:mh@mike.franken.de
                         | WWW     http://aquarius.franken.de/

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


  parent reply	other threads:[~1999-03-09 14:47 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-03-08 16:13 make problem in NT Chandra Kala Chavva
     [not found] ` < Pine.LNX.3.95.990308170914.4131A-100000@cheetah.zsp.com >
1999-03-09 12:48   ` Michael Hirmke
1999-03-31 19:45     ` Michael Hirmke
1999-03-09 12:52   ` g++ is not complete Chandra Kala Chavva
     [not found]     ` < Pine.LNX.3.95.990309134603.6885A-100000@cheetah.zsp.com >
1999-03-09 14:11       ` Mumit Khan
1999-03-31 19:45         ` Mumit Khan
1999-03-09 14:47       ` Michael Hirmke [this message]
1999-03-31 19:45         ` Michael Hirmke
1999-03-31 19:45     ` Chandra Kala Chavva
1999-03-31 19:45 ` make problem in NT Chandra Kala Chavva
1999-03-09 13:00 g++ is not complete Suhaib M. Siddiqi
1999-03-31 19:45 ` Suhaib M. Siddiqi
1999-03-09 13:26 Suhaib M. Siddiqi
1999-03-31 19:45 ` Suhaib M. Siddiqi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7CXHqDQ4pfB@mike.franken.de \
    --to=mh@mike.franken.de \
    --cc=cygwin@sourceware.cygnus.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).