How to install?

Issue #9 resolved
Burak Gürsoy created an issue

Hi, I don't see any build tool or a relevant README in the source. Alternatively, can you add a wiki page describing how to install this from source?

Thanks.

Comments (3)

  1. Former user Account Deleted

    I have the same problem compiling from source...

    This is what I did on a debian-squeeze machine:

    To get the source on your machine you need mercurial, which has the hg command:

    apt-get install mercurial
    

    cd to some place (like home) ,clone the source with the hg command and cd into the retrieved folder like this:

    cd ~
    hg clone https://bitbucket.org/pierrejoye/gd-libgd
    cd gd-libgd/
    

    To run src/configure.ac we now need autoconf: install autoconf:

    apt-get install autoconf
    

    run autoconf on the src/configure.ac:

    autoconf src/configure.ac
    

    This will create a configure file in the src map, which you can run with

    .src/configure
    

    But, that is as far as I got: I then ran into an error saying:

    configure: creating ./config.status
    config.status: error: cannot find input file: `Makefile.in'
    

    And I have no idea how to 'make' & 'make install' from there..

  2. Former user Account Deleted

    for nginx

    ./configure --with-http_image_filter_module
    

    I use version 2 of gd-lib+xpm for developers, thats actually in the debian repositories:

    apt-get install libgd2-xpm-dev
    
  3. Log in to comment