-1

I am installing all external and required libraries before compiling and installing source code of mapserver-6.4.1

I have installed all libraries successfully except libgd.

I have downloaded libgd from here

I am following the below procedure to compile gd library. But i am getting error on this.

[root@localhost /]# cd /usr/local/src/libgd-master

[root@localhost libgd-master]# ./configure

[root@localhost libgd-master]# -bash: ./configure: No such file or directory
Arnab Nandy
  • 6,472
  • 5
  • 44
  • 50
Bhoopesh Pathak
  • 179
  • 1
  • 11

2 Answers2

0

Before executing ./configure run

automake

After which the file configure will be generated.

Santosh A
  • 5,173
  • 27
  • 37
  • Is automake a file on source code directory or it is a tool or other library? i searched in gdlib source code directory, i not found any file like automake – Bhoopesh Pathak Feb 05 '15 at 05:59
  • `automake` is a tool/command. That will parse `configure.ac` file to generate `configure` script – Santosh A Feb 05 '15 at 06:26
0

Why don't you install the system rpm for libgd?

http://rpm.pbone.net/index.php3/stat/4/idpl/15161687/dir/redhat_el_6/com/libgd2-2.0.33-2_11.el6.x86_64.rpm.html

Or you may want the el7 package.

You can install automake as part of the autotools package.

Stephen Woodbridge
  • 1,100
  • 1
  • 8
  • 16