Up wget のインストール 作成: 2021-02-13
更新: 2021-02-13


  1. wget のダウンロード
    • ダウンロードサイト
      Mac Pro (OS 10.9) に対応していそうなバージョンということで,つぎをダウンロード:
        wget-1.16.3.tar.gz 2015-03-09 05:43 3.4M

  2. ~/Downloads でインストールの作業をする。
    wget-1.16.3.tar.gz を解凍してできたフォルダ wget-1.16.3 を,フォルダ Downloads に置く。

    $ cd ~/Downloads/wget-1.16.3

  3. インストール開始
      $ ./configure --with-ssl=openssl
    しかしこれは,つぎのエラーになる:
      checking for OPENSSL... no configure: error: in `/Users/m/Downloads/wget-1.16.3': configure: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables OPENSSL_CFLAGS and OPENSSL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see <http://pkg-config.freedesktop.org/>. See `config.log' for more details

  4. ということで,pkg-config をダウンロード&インストールする:
      ダウンロードサイト:
        https://pkg-config.freedesktop.org/releases/
      Mac Pro (OS 10.9) に対応していそうなバージョンということで,つぎをダウンロード:
        pkg-config-0.28.tar.gz 2013-01-24 13:47 1.8M

      pkg-config-0.28.tar.gz を解凍してできたフォルダ pkg-config-0.28 を,Downloads に置く。

      $ cd ~/Downloads/pkg-config-0.28
      $ ./configure --with-internal-glib
      $ make
      $ sudo make install

  5. wget のインストールに戻る
      $ ./configure --with-ssl=openssl
      $ make
      $ sudo make install