Skip to content

Instantly share code, notes, and snippets.

@cnruby
Created May 7, 2011 09:05
Show Gist options
  • Save cnruby/960344 to your computer and use it in GitHub Desktop.
Save cnruby/960344 to your computer and use it in GitHub Desktop.

Revisions

  1. cnruby revised this gist May 7, 2011. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion install ncurses on macosx
    Original file line number Diff line number Diff line change
    @@ -6,4 +6,4 @@ $ ./configure --prefix=/usr/local \
    --with-shared --without-debug \
    --enable-widec --enable-const --enable-ext-colors --enable-sigwinch --enable-wgetch-events \
    && make
    $ sudo make install
    $ sudo make install
  2. cnruby created this gist May 7, 2011.
    9 changes: 9 additions & 0 deletions install ncurses on macosx
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    $ curl -O ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.9.tar.gz
    $ tar -xzvf ncurses-5.9.tar.gz
    $ cd ./ncurses-5.9
    $ ./configure --prefix=/usr/local \
    --without-cxx --without-cxx-binding --without-ada --without-progs --without-curses-h \
    --with-shared --without-debug \
    --enable-widec --enable-const --enable-ext-colors --enable-sigwinch --enable-wgetch-events \
    && make
    $ sudo make install