zoukankan      html  css  js  c++  java
  • Install GD on mac

    Lots of bioinformatics software are based on perl. Some of them, for example, Circos, NGS toolkit... are written in perl and need certain perl packages. One of the most important one and the most tough one is GD!

    It is really hard to install GD!!!! I've tried so many times and became desperate. Finally find one blog that tells fits me.

    First make some basic setup:

    mkdir build-gd
    cd build-gd
    sudo mkdir -p /usr/local/share/man /usr/local/include /usr/local/bin /usr/local/lib

    Then download and build the latest jpeg libraries:

    #first download latest jpeg-9 source package .tar.gz
    #then cd to the uncompressed directory
    ./configure
    make
    sudo make install mandir="/usr/local/share/man"
    sudo make install-lib *
    sudo ranlib /usr/local/lib/libjpeg.a *
    popd

    #Honestly, I didn't totally understand the code right now. But some seems important (marked as *). Since I've installed with basic ./configure ->make ->make install steps, but cannot help install GD. 

    Then download and build the latest libpng libraries:

    #first download the latest libpng-1.6.8 tar.gz source file
    #then uncompress and cd to the directory
    
    cp scripts/makefile.macosx ./Makefile
    
    perl -i.pre -p -e 's/-current_version $(PNGVER)//g' Makefile
    
    make zlibinc="/usr/lib" zliblib="/usr/lib"
    sudo make install
    sudo ranlib /usr/local/lib/libpng.a
    popd

    Finally, install GD

    #download GD-2.50 source code
    #cd to GD-2.50/
    pushd gd-2.50
    
    sudo make install
    sudo ranlib /usr/local/lib/libgd.a
    popd

    In this way, GD will be finally installed!!! OMG~~~

    Here's the original blog: http://www.dmxzone.com/go/6824/building-gd-on-mac-os-x/

  • 相关阅读:
    二叉树的镜像
    Prototype 模式
    假如编程语言在一起聚餐
    从零开始——Ubuntu系统安装LAMP
    从零开始——Ubuntu系统配置与软件安装
    从零开始——制作Ubuntu系统U盘启动
    apt-get upgrade failure with libc
    再生龙Clonezilla备份Ubuntu系统
    Ubuntu上apache多端口配置虚拟主机的方法
    bash & Makefile & 正则表达式学习
  • 原文地址:https://www.cnblogs.com/foreverycc/p/3510649.html
Copyright © 2011-2022 走看看