nmake snap message: WARNING: distro depends on (msvcr90d.dll &&

nmake snap message: WARNING: distro depends on (msvcr90d.dll &&

am 20.01.2010 18:25:12 von Justin Dearing

--0016363b91ca762a2e047d9bde58
Content-Type: text/plain; charset=ISO-8859-1

Hi,

So I finally got it to build and run on windows. I am tweaking with the
configure options to my likings, but I've made some good progress.

So one thing I noticed after I added postgres support was the following
output of "nmake snap"

WARNING: distro depends on msvcr90d.dll, but could not find it on your
system
WARNING: distro depends on libpq.dll, but could not find it on your system

I have both these libraries in my system. How do I get nmake to find them?

My configure is as follows:

configure --disable-zts --enable-debug --enable-cli-win32 --with-openssl
--enable-soap --with-pgsql=shared --enable-pdo=shared --with-libxml=shared
--with-xml --with-xsl --with-extra-includes="c:\Program
Files\PHP\extras\zlib-1.2.3-vc9-x86\include" --with-extra-libs="c:\Program
Files\PHP\extras\zlib-1.2.3-vc9-x86\lib;c:\program files\Expat 2.0.1\bin"

my path is as follows:

C:\src\php-5.3.1\vc9\x86\php-5.3-svn>path
PATH=C:\Program Files\Microsoft Visual Studio 9.0\VC\Bin;C:\Program
Files\Microsoft Visual Studio 9.0\VC\vcpackages;C:\Progra
m Files\Microsoft Visual Studio 9.0\Common7\IDE;C:\Program Files\Microsoft
SDKs\Windows\v7.0\Bin;C:\Windows\Microsoft.NET\Fra
mework\v3.5;C:\Windows\Microsoft.NET\Framework\v2.0.50727;C: \Program
Files\Microsoft SDKs\Windows\v7.0\Setup;C:\Program Files
\PHP\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbe m;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program
Files\To
rtoiseGit\bin;C:\Program Files\PHP\extras\wso2-wsf-php\wsf_c\lib;C:\Program
Files\PHP\extras\libxml2-2.7.6.win32\bin;C:\Progr
am
Files\PHP\extras\iconv-1.9.2.win32\bin;%LIBXSLT\bin%;C:\Open SSL\bin;C:\Program
Files\WinMerge;c:\Program Files\Microsoft S
QL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL
Server\100\DTS\Binn\;C:\Program Files\TortoiseSVN\bin;c:\Program Fil
es\PostgreSQL\8.4\bin;C:\Program
Files\Nmap;c:\php-sdk\bin\\..\bin;c:\php-sdk\bin\

--0016363b91ca762a2e047d9bde58--

RE: nmake snap message: WARNING: distro depends on(msvcr90d.dll && libpq.dll), but could no

am 20.01.2010 18:34:01 von Venkat Raman Don

Hi,

The folder where the missing two DLL (msvcr90d.dll and libpq.dll) is presen=
t should be there as part of INCLUDE path so that VC compiler should be abl=
e to pick it up. Probably one way of doing this is to pass this folder path=
as an option to nmake by using parameter --with-extra-includes while runni=
ng the configure command.

Thanks,
Don.

-----Original Message-----
From: Justin Dearing [mailto:zippy1981@gmail.com]=20
Sent: Wednesday, January 20, 2010 9:25 AM
To: php-windows
Subject: [PHP-WIN] nmake snap message: WARNING: distro depends on (msvcr90d=
..dll && libpq.dll), but could not find it on your system

Hi,

So I finally got it to build and run on windows. I am tweaking with the
configure options to my likings, but I've made some good progress.

So one thing I noticed after I added postgres support was the following
output of "nmake snap"

WARNING: distro depends on msvcr90d.dll, but could not find it on your
system
WARNING: distro depends on libpq.dll, but could not find it on your system

I have both these libraries in my system. How do I get nmake to find them?

My configure is as follows:

configure --disable-zts --enable-debug --enable-cli-win32 --with-openssl
--enable-soap --with-pgsql=3Dshared --enable-pdo=3Dshared --with-libxml=3Ds=
hared
--with-xml --with-xsl --with-extra-includes=3D"c:\Program
Files\PHP\extras\zlib-1.2.3-vc9-x86\include" --with-extra-libs=3D"c:\Progra=
m
Files\PHP\extras\zlib-1.2.3-vc9-x86\lib;c:\program files\Expat 2.0.1\bin"

my path is as follows:

C:\src\php-5.3.1\vc9\x86\php-5.3-svn>path
PATH=3DC:\Program Files\Microsoft Visual Studio 9.0\VC\Bin;C:\Program
Files\Microsoft Visual Studio 9.0\VC\vcpackages;C:\Progra
m Files\Microsoft Visual Studio 9.0\Common7\IDE;C:\Program Files\Microsoft
SDKs\Windows\v7.0\Bin;C:\Windows\Microsoft.NET\Fra
mework\v3.5;C:\Windows\Microsoft.NET\Framework\v2.0.50727;C: \Program
Files\Microsoft SDKs\Windows\v7.0\Setup;C:\Program Files
\PHP\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbe m;C:\Windows\Sy=
stem32\WindowsPowerShell\v1.0\;C:\Program
Files\To
rtoiseGit\bin;C:\Program Files\PHP\extras\wso2-wsf-php\wsf_c\lib;C:\Program
Files\PHP\extras\libxml2-2.7.6.win32\bin;C:\Progr
am
Files\PHP\extras\iconv-1.9.2.win32\bin;%LIBXSLT\bin%;C:\Open SSL\bin;C:\Prog=
ram
Files\WinMerge;c:\Program Files\Microsoft S
QL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL
Server\100\DTS\Binn\;C:\Program Files\TortoiseSVN\bin;c:\Program Fil
es\PostgreSQL\8.4\bin;C:\Program
Files\Nmap;c:\php-sdk\bin\\..\bin;c:\php-sdk\bin\

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

RE: nmake snap message: WARNING: distro depends on(msvcr90d.dll && libpq.dll), but could no

am 20.01.2010 18:58:23 von Venkat Raman Don

Justin did one small correction. It should be LIB path and not INCLUDE path=
as the missing files are DLL. He is going to try the suggestion and report=
back.

Thanks,
Don.

-----Original Message-----
From: Venkat Raman Don=20
Sent: Wednesday, January 20, 2010 9:34 AM
To: 'Justin Dearing'; php-windows
Subject: RE: [PHP-WIN] nmake snap message: WARNING: distro depends on (msvc=
r90d.dll && libpq.dll), but could not find it on your system

Hi,

The folder where the missing two DLL (msvcr90d.dll and libpq.dll) is presen=
t should be there as part of INCLUDE path so that VC compiler should be abl=
e to pick it up. Probably one way of doing this is to pass this folder path=
as an option to nmake by using parameter --with-extra-includes while runni=
ng the configure command.

Thanks,
Don.

-----Original Message-----
From: Justin Dearing [mailto:zippy1981@gmail.com]=20
Sent: Wednesday, January 20, 2010 9:25 AM
To: php-windows
Subject: [PHP-WIN] nmake snap message: WARNING: distro depends on (msvcr90d=
..dll && libpq.dll), but could not find it on your system

Hi,

So I finally got it to build and run on windows. I am tweaking with the
configure options to my likings, but I've made some good progress.

So one thing I noticed after I added postgres support was the following
output of "nmake snap"

WARNING: distro depends on msvcr90d.dll, but could not find it on your
system
WARNING: distro depends on libpq.dll, but could not find it on your system

I have both these libraries in my system. How do I get nmake to find them?

My configure is as follows:

configure --disable-zts --enable-debug --enable-cli-win32 --with-openssl
--enable-soap --with-pgsql=3Dshared --enable-pdo=3Dshared --with-libxml=3Ds=
hared
--with-xml --with-xsl --with-extra-includes=3D"c:\Program
Files\PHP\extras\zlib-1.2.3-vc9-x86\include" --with-extra-libs=3D"c:\Progra=
m
Files\PHP\extras\zlib-1.2.3-vc9-x86\lib;c:\program files\Expat 2.0.1\bin"

my path is as follows:

C:\src\php-5.3.1\vc9\x86\php-5.3-svn>path
PATH=3DC:\Program Files\Microsoft Visual Studio 9.0\VC\Bin;C:\Program
Files\Microsoft Visual Studio 9.0\VC\vcpackages;C:\Progra
m Files\Microsoft Visual Studio 9.0\Common7\IDE;C:\Program Files\Microsoft
SDKs\Windows\v7.0\Bin;C:\Windows\Microsoft.NET\Fra
mework\v3.5;C:\Windows\Microsoft.NET\Framework\v2.0.50727;C: \Program
Files\Microsoft SDKs\Windows\v7.0\Setup;C:\Program Files
\PHP\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbe m;C:\Windows\Sy=
stem32\WindowsPowerShell\v1.0\;C:\Program
Files\To
rtoiseGit\bin;C:\Program Files\PHP\extras\wso2-wsf-php\wsf_c\lib;C:\Program
Files\PHP\extras\libxml2-2.7.6.win32\bin;C:\Progr
am
Files\PHP\extras\iconv-1.9.2.win32\bin;%LIBXSLT\bin%;C:\Open SSL\bin;C:\Prog=
ram
Files\WinMerge;c:\Program Files\Microsoft S
QL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL
Server\100\DTS\Binn\;C:\Program Files\TortoiseSVN\bin;c:\Program Fil
es\PostgreSQL\8.4\bin;C:\Program
Files\Nmap;c:\php-sdk\bin\\..\bin;c:\php-sdk\bin\

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: nmake snap message: WARNING: distro depends on

am 20.01.2010 19:10:15 von Pierre Joye

hi,

How did you setup your environment? Using the SDK cmd line and then:

setenv /xp /x86 /debug ? That should setup all the path correctly for
the debug crt as well.

As of libpq, it should be in your deps/bin like other DLLs from our
builds. Then simply do SET
PATH=3D%PATH%;c:\php-sdk\php53\vc9\x86\deps\bin

LIB and INCLUDE are for development files.

Cheers,
--
Pierre

On Wed, Jan 20, 2010 at 6:25 PM, Justin Dearing wrote=
:
> Hi,
>
> So I finally got it to build and run on windows. I am tweaking with the
> configure options to my likings, but I've made some good progress.
>
> So one thing I noticed after I added postgres support was the following
> output of "nmake snap"
>
> WARNING: distro depends on msvcr90d.dll, but could not find it on your
> system
> WARNING: distro depends on libpq.dll, but could not find it on your syste=
m
>
> I have both these libraries in my system. How do I get nmake to find them=
?
>
> My configure is as follows:
>
> configure =A0--disable-zts --enable-debug --enable-cli-win32 --with-opens=
sl
> --enable-soap --with-pgsql=3Dshared --enable-pdo=3Dshared --with-libxml=
=3Dshared
> --with-xml --with-xsl --with-extra-includes=3D"c:\Program
> Files\PHP\extras\zlib-1.2.3-vc9-x86\include" --with-extra-libs=3D"c:\Prog=
ram
> Files\PHP\extras\zlib-1.2.3-vc9-x86\lib;c:\program files\Expat 2.0.1\bin"
>
> my path is as follows:
>
> C:\src\php-5.3.1\vc9\x86\php-5.3-svn>path
> PATH=3DC:\Program Files\Microsoft Visual Studio 9.0\VC\Bin;C:\Program
> Files\Microsoft Visual Studio 9.0\VC\vcpackages;C:\Progra
> m Files\Microsoft Visual Studio 9.0\Common7\IDE;C:\Program Files\Microsof=
t
> SDKs\Windows\v7.0\Bin;C:\Windows\Microsoft.NET\Fra
> mework\v3.5;C:\Windows\Microsoft.NET\Framework\v2.0.50727;C: \Program
> Files\Microsoft SDKs\Windows\v7.0\Setup;C:\Program Files
> \PHP\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbe m;C:\Windows\=
System32\WindowsPowerShell\v1.0\;C:\Program
> Files\To
> rtoiseGit\bin;C:\Program Files\PHP\extras\wso2-wsf-php\wsf_c\lib;C:\Progr=
am
> Files\PHP\extras\libxml2-2.7.6.win32\bin;C:\Progr
> am
> Files\PHP\extras\iconv-1.9.2.win32\bin;%LIBXSLT\bin%;C:\Open SSL\bin;C:\Pr=
ogram
> Files\WinMerge;c:\Program Files\Microsoft S
> QL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL
> Server\100\DTS\Binn\;C:\Program Files\TortoiseSVN\bin;c:\Program Fil
> es\PostgreSQL\8.4\bin;C:\Program
> Files\Nmap;c:\php-sdk\bin\\..\bin;c:\php-sdk\bin\
>



--=20
Pierre

@pierrejoye | http://blog.thepimp.net | http://www.libgd.org

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php