From mboxrd@z Thu Jan 1 00:00:00 1970 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 Message-id: <7CXHqDQ4pfB@mike.franken.de> In-reply-to: < Pine.LNX.3.95.990309134603.6885A-100000@cheetah.zsp.com > References: X-SW-Source: 1999-03/msg00299.html 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 /share/vim/doc - mkdir -p /share/vim/syntax - mkdir -p /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 From mboxrd@z Thu Jan 1 00:00:00 1970 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 Message-ID: <7CXHqDQ4pfB@mike.franken.de> References: X-SW-Source: 1999-03n/msg00299.html Message-ID: <19990331194500.WvEm3Ns_IvRNRxbC889Hc-rq43tCyk1Uh9R3cuIvnWM@z> 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 /share/vim/doc - mkdir -p /share/vim/syntax - mkdir -p /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