Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change 
notification.

The "Win32VC9Build" page has been changed by tdonovan.
http://wiki.apache.org/httpd/Win32VC9Build?action=diff&rev1=8&rev2=9

--------------------------------------------------

  
  == Including Database Drivers with Apache httpd ==
  
- The ODBC driver is included by default on Windows. To add additional database 
drivers, first ensure that your LIB and INCLUDE environment variables point to 
the directories which contain the .lib and .h files for your database.  
{{{DBD_LIST}}} should be a space-separated list of the desired drivers.  For 
example: {{{NMAKE -f Makefile.win  INSTDIR=D:\Apache2  DBD_LIST="odbc mysql 
sqlite3"  installr}}}
+ The ODBC driver is included by default on Windows. To add additional database 
drivers, first ensure that your LIB and INCLUDE environment variables include 
the directories which contain the .lib and .h files for your database.  Add a 
{{{DBD_LIST}}} to your NMAKE command, which should be be set to a 
space-separated list of the desired drivers.  For example - if MySQL is in 
C:\MySQL and SQLite is in C:\SQLite: {{{
+ SET INCLUDE=%INCLUDE%;C:\MySQL\include;C:\SQLite
+ SET LIB=%LIB%;C:\MySQL\lib\opt;C:\SQLite
+ NMAKE -f Makefile.win  INSTDIR=D:\Apache2  DBD_LIST="odbc mysql sqlite3"  
installr
+ }}}
  

Reply via email to