OK, I'll make myself clear enough.
I have a linux server and in my phpinfo() 3rd line "Configure Command", the following are its content:
'./configure' '--with-apxs=/usr/local/apache/bin/apxs' '--with-xml' '--enable-bcmath' '--enable-calendar' '--enable-ftp' '--enable-magic-quotes' '--with-mysql' '--enable-discard-path' '--with-pdflib' '--with-pear' '--enable-sockets' '--enable-track-vars' '--enable-versioning' '--with-zlib'
But right now I found I need a GD library as well. So I installed it. My question is when I run "--with-gd" with my "./configure", do I need to run those previous command(old content above) again all together with "gd" or just single "--with-gd" ?
Thank you!