タグ

libraryに関するtaka84u16のブックマーク (5)

  • 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

  • Date4j- 日付を扱う最小限のライブラリ

    Spring BootによるAPIバックエンド構築実践ガイド 第2版 何千人もの開発者が、InfoQのミニブック「Practical Guide to Building an API Back End with Spring Boot」から、Spring Bootを使ったREST API構築の基礎を学んだ。このでは、出版時に新しくリリースされたバージョンである Spring Boot 2 を使用している。しかし、Spring Boot3が最近リリースされ、重要な変...

    Date4j- 日付を扱う最小限のライブラリ
    taka84u16
    taka84u16 2011/12/16
    なんか職人って感じがいい
  • 1