Ok, PHP 4.3.4 compiles perfectly, as long as I don't include JPEG support. Once I do, the compile fails, claiming it can't find libjpeg.a, even though it exists.

My Setup:
PHP 4.3.4
Solaris 8 (SunOS 5.8)
jpeg-6b - freshly downloaded & compiled

My Configure line:
configure --with-apxs=/var/html/apache/bin/apxs --with-gd --with-png-dir=/opt/X11R5 --with-jpeg-dir=../jpeg-6b --with-zlib --with-ttf --enable-gd-native-ttf --with-config-file-path=/var/html/apache/php --disable-posix --disable-session --disable-ctype --prefix=/var/html/apache/php


The 'last bit' of the configure output:
...
checking for GD support... yes
checking for the location of libjpeg... ../jpeg-6b
checking for the location of libpng... /opt/X11R5
checking for the location of libXpm... no
checking for FreeType 1.x support... yes
checking for FreeType 2... no
checking for T1lib support... no
checking whether to enable truetype string function in GD... yes
checking whether to enable JIS-mapped Japanese font support in GD... no
checking for fabsf... (cached) no
checking for floorf... (cached) no
configure: error: libjpeg.(a|so) not found.

Showing that the libjpeg.a does exist:
> ls -aFl ../jpeg-6b/libjpeg.a
-rw-rw-r--   1 ewhite   group    168908 Nov 21 17:27 ../jpeg-6b/libjpeg.a

Config.log:
[Attached]
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

configure:1638: checking host system type
configure:1726: checking for gcc
configure:1839: checking whether the C compiler (gcc  ) works
configure:1855: gcc -o conftest    conftest.c  1>&5
configure:1881: checking whether the C compiler (gcc  ) is a cross-compiler
configure:1886: checking whether we are using GNU C
configure:1914: checking whether gcc accepts -g
configure:1947: checking whether gcc and cc understand -c and -o together
configure:1998: checking how to run the C preprocessor
configure:2079: checking for AIX
configure:2106: checking if compiler supports -R
configure:2180: checking for re2c
configure:2211: checking for ranlib
configure:2239: checking whether ln -s works
configure:2264: checking for gawk
configure:2298: checking for bison
configure:2332: checking bison version
configure:2342: checking for flex
configure:2376: checking for yywrap in -lfl
configure:2419: checking lex output file root
configure:2440: checking whether yytext is a pointer
configure:2483: checking for working const
configure:2562: checking flex version
configure:2706: gcc -o conftest -g -O2 -pthreads  -D_POSIX_PTHREAD_SEMANTICS  
conftest.c  1>&5
configure:2726: checking for pthreads_cflags
configure:2789: checking for pthreads_lib
configure:2915: checking for AOLserver support
configure:3135: checking for Apache 1.x module support via DSO through APXS
configure:4199: checking for member fd in BUFF *
configure:4242: checking for mod_charset compatibility option
configure:4309: checking for Apache 2.0 filter-module support via DSO through APXS
configure:5045: checking for Apache 2.0 handler-module support via DSO through APXS
configure:5782: checking for Caudium support
configure:6092: checking for CLI build
configure:6152: checking for embedded SAPI library support
configure:6335: checking for Zeus ISAPI support
configure:6545: checking for NSAPI support
configure:6866: checking for PHTTPD support
configure:7075: checking for Pi3Web support
configure:7384: checking for Roxen/Pike support
configure:7633: checking for Servlet support
configure:8111: checking for thttpd
configure:8317: checking for TUX
configure:8531: checking for webjames
configure:8932: checking for chosen SAPI module
configure:9837: checking for missing declarations of reentrant functions
configure:9846: gcc -c -g -O2  -D_POSIX_PTHREAD_SEMANTICS conftest.c 1>&5
configure: In function `main':
configure:9843: `localtime_r' undeclared (first use in this function)
configure:9843: (Each undeclared identifier is reported only once
configure:9843: for each function it appears in.)
configure: failed program was:
#line 9839 "configure"
#include "confdefs.h"
#include <time.h>
int main() {
struct tm *(*func)() = localtime_r
; return 0; }
configure:9871: gcc -c -g -O2  -D_POSIX_PTHREAD_SEMANTICS conftest.c 1>&5
configure: In function `main':
configure:9868: `gmtime_r' undeclared (first use in this function)
configure:9868: (Each undeclared identifier is reported only once
configure:9868: for each function it appears in.)
configure: failed program was:
#line 9864 "configure"
#include "confdefs.h"
#include <time.h>
int main() {
struct tm *(*func)() = gmtime_r
; return 0; }
configure:9896: gcc -c -g -O2  -D_POSIX_PTHREAD_SEMANTICS conftest.c 1>&5
configure:9921: gcc -c -g -O2  -D_POSIX_PTHREAD_SEMANTICS conftest.c 1>&5
configure:9946: gcc -c -g -O2  -D_POSIX_PTHREAD_SEMANTICS conftest.c 1>&5
configure: In function `main':
configure:9943: `strtok_r' undeclared (first use in this function)
configure:9943: (Each undeclared identifier is reported only once
configure:9943: for each function it appears in.)
configure: failed program was:
#line 9939 "configure"
#include "confdefs.h"
#include <string.h>
int main() {
char *(*func)() = strtok_r
; return 0; }
configure:9970: checking for sendmail
configure:10011: checking whether system uses EBCDIC
configure:10104: checking for socket
configure:10132: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c  1>&5
Undefined                       first referenced
 symbol                             in file
socket                              /var/tmp/ccrW2Ilb.o
ld: fatal: Symbol referencing errors. No output written to conftest
collect2: ld returned 1 exit status
configure: failed program was:
#line 10109 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char socket(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char socket();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_socket) || defined (__stub___socket)
choke me
#else
socket();
#endif

; return 0; }
configure:10150: checking for __socket
configure:10178: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c  1>&5
Undefined                       first referenced
 symbol                             in file
__socket                            /var/tmp/ccZixDVd.o
ld: fatal: Symbol referencing errors. No output written to conftest
collect2: ld returned 1 exit status
configure: failed program was:
#line 10155 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char __socket(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char __socket();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub___socket) || defined (__stub_____socket)
choke me
#else
__socket();
#endif

; return 0; }
configure:10216: checking for socket in -lsocket
configure:10235: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lsocket   1>&5
configure:10310: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c  -lsocket 1>&5
configure:10361: checking for htonl
configure:10389: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lsocket  1>&5
configure:10618: checking for gethostname
configure:10646: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lsocket  1>&5
configure:10875: checking for gethostbyaddr
configure:10903: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lsocket  1>&5
Undefined                       first referenced
 symbol                             in file
gethostbyaddr                       /var/tmp/ccqMrBea.o  (symbol belongs to implicit 
dependency /usr/lib/libnsl.so.1)
ld: fatal: Symbol referencing errors. No output written to conftest
collect2: ld returned 1 exit status
configure: failed program was:
#line 10880 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char gethostbyaddr(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char gethostbyaddr();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_gethostbyaddr) || defined (__stub___gethostbyaddr)
choke me
#else
gethostbyaddr();
#endif

; return 0; }
configure:10921: checking for __gethostbyaddr
configure:10949: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lsocket  1>&5
Undefined                       first referenced
 symbol                             in file
__gethostbyaddr                     /var/tmp/ccNALp6c.o
ld: fatal: Symbol referencing errors. No output written to conftest
collect2: ld returned 1 exit status
configure: failed program was:
#line 10926 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char __gethostbyaddr(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char __gethostbyaddr();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub___gethostbyaddr) || defined (__stub_____gethostbyaddr)
choke me
#else
__gethostbyaddr();
#endif

; return 0; }
configure:10987: checking for gethostbyaddr in -lnsl
configure:11006: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lnsl  -lsocket  1>&5
configure:11081: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lsocket  -lnsl 1>&5
configure:11132: checking for yp_get_default_domain
configure:11160: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lnsl -lsocket  1>&5
configure:11390: checking for dlopen
configure:11418: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lnsl -lsocket  1>&5
Undefined                       first referenced
 symbol                             in file
dlopen                              /var/tmp/ccuIr7Wa.o  (symbol belongs to implicit 
dependency /usr/lib/libdl.so.1)
ld: fatal: Symbol referencing errors. No output written to conftest
collect2: ld returned 1 exit status
configure: failed program was:
#line 11395 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char dlopen(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char dlopen();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_dlopen) || defined (__stub___dlopen)
choke me
#else
dlopen();
#endif

; return 0; }
configure:11436: checking for __dlopen
configure:11464: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lnsl -lsocket  1>&5
Undefined                       first referenced
 symbol                             in file
__dlopen                            /var/tmp/ccPP0HGa.o
ld: fatal: Symbol referencing errors. No output written to conftest
collect2: ld returned 1 exit status
configure: failed program was:
#line 11441 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char __dlopen(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char __dlopen();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub___dlopen) || defined (__stub_____dlopen)
choke me
#else
__dlopen();
#endif

; return 0; }
configure:11502: checking for dlopen in -ldl
configure:11521: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -ldl  -lnsl -lsocket  1>&5
configure:11596: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lnsl -lsocket  -ldl 1>&5
configure:11648: checking for sin in -lm
configure:11701: checking for res_search
configure:11729: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lm -ldl -lnsl -lsocket  1>&5
Undefined                       first referenced
 symbol                             in file
res_search                          /var/tmp/ccLHNM0d.o
ld: fatal: Symbol referencing errors. No output written to conftest
collect2: ld returned 1 exit status
configure: failed program was:
#line 11706 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char res_search(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char res_search();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_res_search) || defined (__stub___res_search)
choke me
#else
res_search();
#endif

; return 0; }
configure:11747: checking for __res_search
configure:11775: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lm -ldl -lnsl -lsocket  1>&5
Undefined                       first referenced
 symbol                             in file
__res_search                        /var/tmp/ccCsnxHd.o
ld: fatal: Symbol referencing errors. No output written to conftest
collect2: ld returned 1 exit status
configure: failed program was:
#line 11752 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char __res_search(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char __res_search();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub___res_search) || defined (__stub_____res_search)
choke me
#else
__res_search();
#endif

; return 0; }
configure:11813: checking for res_search in -lresolv
configure:11832: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lresolv  -lm -ldl -lnsl -lsocket  1>&5
configure:11907: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lm -ldl -lnsl -lsocket  -lresolv 1>&5
configure:12237: checking for inet_aton
configure:12265: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lresolv -lm -ldl -lnsl -lsocket  1>&5
configure:12633: checking for dn_skipname
configure:12661: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lresolv -lm -ldl -lnsl -lsocket  1>&5
configure:13027: checking for ANSI C header files
configure:13135: checking for dirent.h that defines DIR
configure:13173: checking for opendir in -ldir
configure:13258: checking for fclose declaration
configure:13267: gcc -c -g -O2  -D_POSIX_PTHREAD_SEMANTICS conftest.c 1>&5
configure:13342: checking for dirent.h
configure:13342: checking for ApplicationServices/ApplicationServices.h
configure:13342: checking for sys/param.h
configure:13342: checking for sys/types.h
configure:13342: checking for sys/time.h
configure:13342: checking for netinet/in.h
configure:13342: checking for alloca.h
configure:13342: checking for arpa/inet.h
configure:13342: checking for arpa/nameser.h
configure:13342: checking for assert.h
configure:13342: checking for crypt.h
configure:13342: checking for fcntl.h
configure:13342: checking for grp.h
configure:13342: checking for ieeefp.h
configure:13342: checking for langinfo.h
configure:13342: checking for limits.h
configure:13342: checking for locale.h
configure:13342: checking for monetary.h
configure:13342: checking for mach-o/dyld.h
configure:13342: checking for netdb.h
configure:13342: checking for pwd.h
configure:13342: checking for resolv.h
configure:13342: checking for signal.h
configure:13342: checking for stdarg.h
configure:13342: checking for stdlib.h
configure:13342: checking for string.h
configure:13342: checking for syslog.h
configure:13342: checking for sysexits.h
configure:13342: checking for sys/file.h
configure:13342: checking for sys/mman.h
configure:13342: checking for sys/mount.h
configure:13342: checking for sys/poll.h
configure:13342: checking for sys/resource.h
configure:13342: checking for sys/select.h
configure:13342: checking for sys/socket.h
configure:13342: checking for sys/statfs.h
configure:13342: checking for sys/statvfs.h
configure:13342: checking for sys/vfs.h
configure:13342: checking for sys/sysexits.h
configure:13342: checking for sys/varargs.h
configure:13342: checking for sys/wait.h
configure:13342: checking for unistd.h
configure:13342: checking for unix.h
configure:13342: checking for utime.h
configure:13342: checking for sys/utsname.h
configure:13342: checking for sys/ipc.h
configure:13342: checking for dlfcn.h
configure:13381: checking for fopencookie
configure:13553: checking for broken getcwd
configure:13568: checking for broken libc stdio
configure:13629: gcc -o conftest -g -O2  -D_POSIX_PTHREAD_SEMANTICS  -R/usr/ucblib 
-L/usr/ucblib conftest.c -lresolv -lm -ldl -lnsl -lsocket  1>&5
configure: failed program was:
#line 13601 "configure"
#include "confdefs.h"

#include <stdio.h>
int main(int argc, char *argv[])
{
  FILE *fp;
  long position;
  char *filename = "/tmp/phpglibccheck";
  
  fp = fopen(filename, "w");
  if (fp == NULL) {
          perror("fopen");
          exit(2);
  }
  fputs("foobar", fp);
  fclose(fp);

  fp = fopen(filename, "a+");
  position = ftell(fp);
  fclose(fp);
  unlink(filename);
  if (position == 0)
        return 1;
  return 0;
}

configure:13657: checking whether struct tm is in sys/time.h or time.h
configure:13691: checking for tm_zone in struct tm
configure:13724: checking for tzname
configure:13763: checking for tm_gmtoff in struct tm
configure:13799: checking for struct flock
configure:13841: checking for socklen_t
configure:13884: checking size of long
configure:13923: checking size of int
configure:13963: checking for st_blksize in struct stat
configure:13998: checking for st_blocks in struct stat
configure:14038: checking for st_rdev in struct stat
configure:14073: checking for size_t
configure:14106: checking for uid_t in sys/types.h
configure:14141: checking for struct sockaddr_storage
configure:14186: gcc -c -g -O2  -D_POSIX_PTHREAD_SEMANTICS conftest.c 1>&5
configure: In function `main':
configure:14182: structure has no member named `sa_len'
configure: failed program was:
#line 14176 "configure"
#include "confdefs.h"

#include <sys/types.h>
#include <sys/socket.h>

int main() {
static struct sockaddr sa; int n = (int) sa.sa_len; return n
; return 0; }
configure:14199: checking for IPv6 support
configure:14231: checking for vprintf
configure:14403: checking for alphasort
configure:14403: checking for asctime_r
configure:14403: checking for chroot
configure:14403: checking for ctime_r
configure:14403: checking for cuserid
configure:14403: checking for crypt
configure:14403: checking for flock
configure:14403: checking for ftok
configure:14403: checking for funopen
configure:14403: checking for gai_strerror
configure:14403: checking for gcvt
configure:14403: checking for getlogin
configure:14403: checking for getprotobyname
configure:14403: checking for getprotobynumber
configure:14403: checking for getservbyname
configure:14403: checking for getservbyport
configure:14403: checking for getrusage
configure:14403: checking for gettimeofday
configure:14403: checking for gmtime_r
configure:14403: checking for isascii
configure:14403: checking for link
configure:14403: checking for localtime_r
configure:14403: checking for lockf
configure:14403: checking for lrand48
configure:14403: checking for memcpy
configure:14403: checking for memmove
configure:14403: checking for mkstemp
configure:14403: checking for mmap
configure:14403: checking for nl_langinfo
configure:14403: checking for perror
configure:14403: checking for poll
configure:14403: checking for putenv
configure:14403: checking for realpath
configure:14403: checking for random
configure:14403: checking for rand_r
configure:14403: checking for regcomp
configure:14403: checking for res_search
configure:14403: checking for scandir
configure:14403: checking for setitimer
configure:14403: checking for setlocale
configure:14403: checking for localeconv
configure:14403: checking for setsockopt
configure:14403: checking for setvbuf
configure:14403: checking for shutdown
configure:14403: checking for sin
configure:14403: checking for snprintf
configure:14403: checking for srand48
configure:14403: checking for srandom
configure:14403: checking for statfs
configure:14403: checking for statvfs
configure:14403: checking for std_syslog
configure:14403: checking for strcasecmp
configure:14403: checking for strcoll
configure:14403: checking for strdup
configure:14403: checking for strerror
configure:14403: checking for strftime
configure:14403: checking for strstr
configure:14403: checking for strtok_r
configure:14403: checking for symlink
configure:14403: checking for tempnam
configure:14403: checking for tzset
configure:14403: checking for unsetenv
configure:14403: checking for usleep
configure:14403: checking for utime
configure:14403: checking for vsnprintf
configure:14457: checking for getaddrinfo
configure:14492: checking for strlcat
configure:14492: checking for strlcpy
configure:14492: checking for getopt
configure:14547: checking whether utime accepts a null argument
configure:14594: checking for working alloca.h
configure:14627: checking for alloca
configure:14827: checking whether sprintf is broken
configure:14876: checking whether snprintf is broken
configure:14940: checking for declared timezone
configure:14987: checking for type of reentrant time-related functions
configure:15084: checking for readdir_r
configure:15134: checking for type of readdir_r
configure:15288: checking whether to include debugging symbols
configure:15321: checking layout of installed files
configure:15355: checking path to configuration file
configure:15391: checking directory to be scanned for configuration files
configure:15421: checking whether to enable safe mode by default
configure:15456: checking for safe mode exec dir
configure:15497: checking whether to enable PHP's own SIGCHLD handler
configure:15534: checking whether to enable magic quotes by default
configure:15571: checking whether to enable runpaths
configure:15596: checking whether to explicitly link against libgcc
configure:15675: checking whether to enable short tags by default
configure:15712: checking whether to enable dmalloc
configure:15800: checking whether to enable IPv6 support
configure:15830: checking whether to enable versioning
configure:15882: checking for OpenSSL support
configure:16766: checking for ZLIB support
configure:16812: checking if the location of ZLIB install directory is defined
configure:17152: checking for gzgets in -lz
configure:17309: checking whether to enable bc style precision math functions
configure:17590: checking for BZip2 support
configure:18134: checking whether to enable calendar conversion support
configure:18398: checking for cpdflib support
configure:19434: checking for CRACKlib support
configure:19844: checking whether to enable ctype functions
configure:20106: checking for CURL support
configure:20884: checking for cyrus imap support
configure:21796: checking for xDBM support
configure:22414: checking whether to enable DBA
configure:22740: checking for GDBM support
configure:23045: checking for NDBM support
configure:23344: checking for Berkeley DB4 support
configure:23664: checking for Berkeley DB3 support
configure:23984: checking for Berkeley DB2 support
configure:24304: checking for DBM support
configure:24645: checking for CDB support
configure:24699: checking for INI File support
configure:24753: checking for FlatFile support
configure:24768: checking whether to enable DBA interface
configure:25010: checking whether to enable dbase support
configure:25272: checking whether to enable dbx support
configure:25530: checking whether to enable direct I/O support
configure:25790: checking for DOM support
configure:26450: checking for DOM XSLT support
configure:26475: checking for DOM EXSLT support
configure:27118: checking whether to enable EXIF (metadata from images) support
configure:27380: checking for FrontBase SQL92 (fbsql) support
configure:27801: checking for FDF support
configure:28512: checking whether to enable the bundled filePro support
configure:28774: checking for FriBidi support
configure:29216: checking whether to enable FTP support
configure:29479: checking for GD support
configure:29526: checking for the location of libjpeg
configure:29553: checking for the location of libpng
configure:29606: checking for the location of libXpm
configure:29631: checking for FreeType 1.x support
configure:29656: checking for FreeType 2
configure:29681: checking for T1lib support
configure:29706: checking whether to enable truetype string function in GD
configure:29731: checking whether to enable JIS-mapped Japanese font support in GD
configure:29785: checking for fabsf
configure:29785: checking for floorf

Reply via email to