here's some more
./configure --enable-shared \
--disable-static \
--with-mysql=/usr
will get you
checking whether to build shared libraries... no
checking whether to build static libraries... yes
./configure --enable-shared \
--disable-static \
--with-mysql=shared,/usr
will get you
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
the makefile in ext/mysql
has
LTLIBRARY_NAME = libmysql.la
LTLIBRARY_SOURCES = php_mysql.c
LTLIBRARY_LIBADD = $(MYSQL_LIBADD)
LTLIBRARY_SHARED_NAME = mysql.la
LTLIBRARY_SHARED_LIBADD = $(MYSQL_SHARED_LIBADD)
what am i doing wrong ????????
i dont want to have to use IIS and ASP
for the rest of my life ...
-pete
please