HOW TO COMPILE THE DRIVER INTO PHP4


- Compile dbtcp
  cd /usr/src
  tar zxvf dbtcp.tar.gz
  cd dbtcp
  make

- Copy the directory dbtcp in the ext directory of php4.
  mkdir /usr/src/php4/ext/dbtcp
  cp /usr/src/dbtcp/php/dbtcp/* /usr/src/php4/ext/dbtcp

- Rebuild the configuration of php4
  cd /usr/src/php4
  ./buildconf
  ./configure --with-dbtcp=/usr/src/dbtcp [ add your options here ]
  make
