推荐这篇文章:http://vladimirbarbarosh.blogspot.com/2011/05/compile-php-536-pecl-libevent-004.html
为了方便大家阅读,将内容转载给大家,不过还是鼓励去看原创博文。
Compile php-5.3.6 + pecl-libevent-0.0.4 + libevent-2.0.11-stable
Yesterday a friend of mine ask me to compile libevent PHP extension for Windows. It takes me about a whole day to figure out how to do that. Just because it takes so much time I decided to publish how to do that. (To be honest we make it together.)
SOURCES
The following is a list of sources that we will need:
? PHP 5.3.6
? PECL libevent-0.0.4
? libevent-2.0.11-stable
TOOLS
The following is a list of tools that we well need:
? Windows SDK for Windows Server 2008 and .NET Framework 3.5
? PHP SDK Binary Tools
? PHP 5.3 Depencencies (for the minimal PHP they are not necessary)
1. INSTALL WINDOWS SDK
I assume that they will be installed into c:sdk directory.
2. CREATE C:PHPSDK DIRECTORY
This is our workplace. I find it much easier to explain, read, and follow how to create it usingpseudo-code rather than words:
mkdir c:phpsdk
pushd c:phpsdk
extract http://windows.php.com/downloads/php-sdk/php-sdk-binary-tools-20110512.zip
binphpsdk_setvars.bat
binphpsdk_buildtree.bat php-5.3.6
pushd php-5.3.6vc9x86
extract http://md.php.com/distributions/php-5.3.6.tar.bz2
mv php-5.3.6 src
extract http://windows.php.com/downloads/php-sdk/deps-5.3-vc9-x86.7z
popd
extract http://pecl.php.com/get/libevent-0.0.4.tgz
rm package.xml
mv libevent-0.0.4 php_libevent
pushd php_libevent
extract http://monkey.org/~provos/libevent-2.0.11-stable.tar.gz
popd
popd
3. COMPILE MINIMAL PHP
cmd /e:on /v:on
c:sdkbinsetenv.cmd /x86 /xp /release
c:phpsdkbinphpsdk_setvars.bat
cd c:phpsdkphp-5.3.6vc9x86src
buildconf
configure --disable-all --enable-cli
nmake
rem The following command creates php-5.3.6-devel-VC9-x86
rem directory which gives us extension developer's header
rem and .lib files
nmake snap
4. COMPILE LIBEVENT-2.0.11-STABLE
cmd /e:on /v:on
c:sdkbinsetenv.cmd /x86 /xp /release
c:phpsdkbinphpsdk_setvars.bat
cd c:phpsdkphp_libeventlibevent-2.0.11-stable
nmake -f Makefile.nmake
5. COMPILE PHP_LIBEVENT.DLL
This was the most trickier part.
cmd /e:on /v:on
c:sdkbinsetenv.cmd /x86 /xp /release
c:phpsdkbinphpsdk_setvars.bat
cd c:phpsdkphp_libevent
set phpdevdir=c:phpsdkphp-5.3.6vc9x86srcRelease_TSphp-5.3.6-devel-VC9-x86
set libeventdir=c:phpsdklibeventlibevent-2.0.11-stable
cl libevent.c ^
/c ^
/Fophp_libevent.obj ^
/DZEND_WIN32 ^
/DPHP_WIN32 ^
/DWIN32 ^
/DZTS=1 ^
/DZEND_DEBUG=0 ^
/DCOMPILE_DL_LIBEVENT ^
/I%phpdevdir%includeZend ^
/I%phpdevdir%includemain ^
/I%phpdevdir%includeTSRM ^
/I%phpdevdir%include ^
/I%libeventdir%WIN32-Code ^
/I%libeventdir%include ^
/I%libeventdir%
link php_libevent.obj ^
/DLL ^
php5ts.lib /LIBPATH:%phpdevdir%lib ^
libevent.lib /LIBPATH:%libeventdir% ^
ws2_32.lib
6. TESTING PHP_LIBEVENT.DLL
cd c:phpsdkphp-5.3.6vc9x86srcRelease_TSphp-5.3.6
copy php.ini-development php.ini
echo extension=c:phpsdkphp_libeventphp_libevent.dll >> php.ini
php -m
FILES
? php-5.3.6-libevent-ts.zip
? phpsdk-libevent-skeleton.zip (skeleton of our workspace directory)
REFERENCES
? Build your own PHP on Windows
? How do I compile an extension for PHP 5.3 for windows as a DLL?
? Creating a PHP 5 Extension with Visual C++ 2005
? Creating a PHP Extension for Windows using Microsoft Visual C++ 2008
? Compiling PHP for Windows Vista using Visual C++ Express 2008 – Seriously!
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!