タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

linuxとlibraryに関するtaka84u16のブックマーク (4)

  • zlib のインストール

    zlib は zip や gzip、画像フォーマット PNG に使われている圧縮アルゴリズムをライブラリ化したものをいいます。 zlib 公式サイト から zlib のソースファイルをダウンロードしてインストールする方法を紹介します。 zlib のダウンロードとインストール zlib のソースファイルを zlib 公式サイト からダウンロードしてコンパイル、インストールを行います。 # wget -P /usr/local/src http://www.zlib.net/zlib-1.2.3.tar.gz # cd /usr/local/src # tar xzf zlib-1.2.3.tar.gz # cd zlib-1.2.3 # ./configure --prefix=/usr/local # make # make install

    zlib のインストール
  • Ncurses のインストール

    Ncurses はキャラクタと端末を扱うパネルとメニューを含むライブラリを提供します。 GNU Ncurses から Ncurses のソースファイルをダウンロードしてインストールする方法を紹介します。 Ncurses のダウンロードとインストール Ncurses のソースファイルを GNU Ncurses からダウンロードしてコンパイル、インストールを行います。 # wget -P /usr/local/src http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.5.tar.gz # cd /usr/local/src # tar xzf ncurses-5.5.tar.gz # cd ncurses-5.5 # ./configure --prefix=/usr/local --without-cxx-binding # make # make i

    Ncurses のインストール
  • Readline のインストール

    Readline ライブラリは対話型プログラム向けに入力の編集とヒストリー機能を実装しています。 The GNU Readline Library から Readline のソースファイルをダウンロードしてインストールする方法を紹介します。 Readline のダウンロードとインストール Readline のソースファイルを The GNU Readline Library からダウンロードしてコンパイル、インストールを行います。 # wget -P /usr/local/src http://ftp.gnu.org/pub/gnu/readline/readline-5.2.tar.gz # cd /usr/local/src # tar xzf readline-5.2.tar.gz # cd readline-5.2 # ./configure --prefix=/usr/local

    Readline のインストール
  • The GNU Readline Library

    Table of Contents Introduction Current Status Source Code Availability Distributions Documentation Reporting Bugs Other Resources Maintainer Translations Introduction The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functio

  • 1