How to Compile PHP5.2 and PHP-GTK2 on Windows using Visual C++ Express

Compiling PHP-GTK2

PHP-GTK2 will require two items, the source code for the extension and the GTK+ development library stuff. Let’s start with the libraries since it will take a rather long time and a lot of downloads.

Start with Gtk’s ftp site. We’ll want the 2.6.9 branch versions of GTK+ and its dependencies. Download glib, gtk+ and pango dev packages. I had a problem with something not being available in the 1.9.0 download of atk, so I got the 1.10.1 version instead. I created a seperate directory for all the GTK+ libs, parallel to the php_build dir, and called it gtk_build (I know, I’m so original)

Now unzip the glib contents. Drop the created folders into your gtk_build directory. Now go into gtk_build/lib/glib-2.0/include and move glibconfig.h to gtk_build/include. Next go into gtk_build/include/glib-2.0. Move the contents of that directory up one so you have gtk_build/include/glib and gtk_build/include/gobject, etc. Next unzip the gtk contents. Drop the folders into gtk_build again. Next go into gtk_build/lib/gtk-2.0/include and move gdkconfig.h into gtk_build/include. Then go to gtk_build/include/gtk-2.0 and move all the contents one directory up (just like you did with glib). Unzip pango and atk and drop them into place. Just like gtk and glib you’ll need to go into the include directory and move /atk out of /atk-1.0 and /pango out of /pango-1.0.

Almost there - gtk uses iconv and gettext, but the version you used for PHP won’t work quite right, so we’ll head to Tor’s site and get some working libs. You’ll need libiconv and gettext. Unzip them and put their contents in your gtk_build directory. Do NOT put them in your php_build directory - they’ll overwrite stuff and cause a mess!

dirsetup

No, we’re still not done. You’ll also need two additional tools - grep and sed for windows. You can get them from GNU utilities for Win32. Download the zip, remove grep and sed, and place them in you php_build/bin - NOT your gtk_build directory.

Now you’ll need to add a few more directories to vsvars32.bat. You’ll need to add your gtk_build/lib path and the path to your newly compiled PHP Release_TS folder to LIB, the location of some kind of php cli added to PATH (this is used for generating C files), and the location of gtk_build/include and your php source (mine is c:phpphp5) to the INCLUDE variable. Now you’re almost ready to build.

Probably the best way to get php-gtk2 source is to use cvs, the only release is an alpha that’s rather old at this point. My source ended up in php-gtk parallel to the php_build, php5, and gtk_build directories.
There’s one last thing you need to do - open main/php_gtk.h in your php-gtk source folder. There’s a little VS 2005 bug that we need to fix (I need to submit it to the mailing list) - move

#include "php.h"
#include "php_ini.h"

underneath the #ifdef PHP_WIN32 block (that means after the #endif)

Now open the command prompt, just like you did for building php, and run buildconf, then look at the configure options and then run configure - currently the only PHP-GTK2 extension with a windows configure file is libglade - you can get the header and library files needed from Glade/Gtk+ downloads, put the contents in your gtk_build directory. The include directory is nested like the others, so take glade-2.40/glade and move it one dir up. But I still couldn’t get the extension to build properly - but since I don’t use any extensions I don’t really care at this point :) It might take awhile for the files to generate. You can look at the progress in win32/logs.

Finally nmake

Just like the php SAPIS you built above, the dll will need to have the manifest packed inside (how annoying)

previous pagenext page

Pages: 1 2 3 4 5

31 Responses to “How to Compile PHP5.2 and PHP-GTK2 on Windows using Visual C++ Express”

  1. Trevor Gryffyn Says:

    Good luck with the compiling. I don’t know if you’re dead set on GTK, but last time I used it I almost went insane I think. Just wanted to drop a quick note recommending Winbinder (http://www.winbinder.com) if you’ll be totally involved with just Windows development. It uses the native Windows GUI and API rather than create it’s own (as GTK did.. which is great for cross platform, but not ideal I think). I’m not affiliated with Winbinder nor get any kickbacks from them, just think Rubem and crew have done an incredible job and want to make sure people know about their good work. Best of luck!rnrn-TG

  2. auroraeosrose Says:

    GTK2 is a whole different ballgame from GTK1 - I tried the PHP-GTK1 route a long time ago and threw up my hands in despair. But GTK2 is awesome, even if the PHP version is unfinished.rnrnI actually tried Winbinder. It is a nice idea - but last time I used it the API was horrid, it wasn’t OO, and you had to include regular php files just to use it (which completely defeats the purpose of a php extension), it didn’t have printing support (which PHP-GTK2 doesn’t at the moment, but will), and they had db junk thrown in… maybe I’m just strange but to me the code was a mess. But the dealbreaker for me is that Winbinder is php4 only - um, no thanks.

  3. Jeroen Says:

    Wow, nice tutorial!rnrnI\’m one of those silly people who wants to compile PHP 5.2 on Windows, too. (Windows XP Home SP2)\r\n\r\nYour tutorial helped me a lot (I\’m already at it for 1 day now, lol), at least I got it compiled now.\r\n\r\nYou forgot the part about winres(rc).h in this article.\r\n\r\nWhat I did: I copied WINRES.H (C:\\\\Program Files\\\\Microsoft Platform SDK for Windows Server 2003 R2\\\\Include\\\\mfc) + WinResrc.h (C:\\\\Program Files\\\\Microsoft Platform SDK for Windows Server 2003 R2\\\\Include) to \”php-5.2.0\\\\win32\\build\” and to \”php_build\\\\include\” (both files in both folders, hey it worked :-))\r\n\r\nNow all I got to do is solve that error about MSVCR80.dll (I tried installing that redistributable thingy you linked. Alas, it looks like it didn\’t install or something, because it doesn\’t work)\r\n\r\nI\’ll let you know how it turns out, if you got any suggestions about MSVCR80.dll, I\’d like to hear them :-)

  4. Jeroen Says:

    Btw your script strips to much backslashes (\), even from newlines and carriage returns (very annoying ;-))!

  5. auroraeosrose Says:

    I need to upgrade wordpress, but I have a mysqli hack running so it’s a pain in rear - I added the winres.h informationrnrnas for the msvcr80.dll - did you look in your winsxs directory to see if the file existed? and did you remember to use the mt command to pack EVERY DLL with the manifest it needs? also since this is sucky windows you may have to restart your machinern

  6. Ekate Says:

    No,no,nornit doesn’t work.rnI even can’t compile phprnI get the following errorrnNMAKE:fatal error U1077 “C:Program filesMicrosoft Visual Studio 8…c1.exe” return ‘0×2′rnStop.rnrnCan anyone help me with it?rn

  7. Iuri Fiedoruk Says:

    Did you by any chance got the apache module also compiled or only the command line client?rnThanks in advance.

  8. Tim Sample Says:

    Great tutorial. Thanks you so much. I’d like to mention that this is the best/only resource for building PHP extensions under Windows.

  9. dinesh Says:

    I am currently building an application using php-gtk for that i have to make an nsis installer which can automatically install php and php - gtk dependencies ,,,
    CAn you tell me that i should make a seprate package for php , php-gtk , and of my application
    or just put the files into a nsis script and run it….

    thanx

  10. auroraeosrose Says:

    There is already an nsis installer for php-gtk2 on windows at gnope.org, and for php-gtk1 if you’re still using that at http://www.firepages.org/gtkdev.html

    I’m also writing an msi installer using wix (look for it in cvs soon) the advantages of msi include command line installation, and pushing out to organizations using windows tools

  11. developercast.com » IBM developerWorks: Building PHP on Windows Says:

    […] also points to Elizabeth Smith’s tutorial on compiling on Windows for more information. […]

  12. PHP Guru Says:

    This would have helped me out a bunch a year ago. Grrrrrrrrrrrrr…

    Thanks.. nice article.

  13. Jan Says:

    I’m trying to compile gtk with msvc 7.1 for a week. This is serious hell. Each library has different kind of msvc compilation (makefile, MSV project or even better nothing). There are no config.h.win32, libraries are installed to different location (c:usr or left in place). And I’m still unable to compile cairo (I don’t want by compiling freetype and fontconfig, expat and other crap to tear all my hair, so there is some unresolved symbols and no makefile.msc of course). The GTK makefiles is calling perl with too long line that the very stupid cmd can’t process.

    All this is because python is compiled with msvc 7.1. And if your app is using GTK compiled with msvc6 (linked with msvcrt.dll) and python in 7.1 (linked with msvcr71.dll) it will crash soon after the app is doing something with files (like g_fopen). What should I do now?

  14. auroraeosrose Says:

    Jan: I’ve been (very slowly) working on building msvc project files for the gtk monstrosity - but as you’ve noted, there are so many dependencies that it’s taking me forever.

    I’m not sure what to tell you about the runtime clashing - I’ve never actually run into a problem even when mixing runtimes, but I’ve heard stories from others.

  15. johndee Says:

    thanks for the article! it really saves a lot of nerve when you get into the perversion of building php on windowz %)

    unfortunately the ftp with libraries required for the build is down, so i wonder if you could post a list of these libs or the archive itself.

    will be very grateful if u send it directly to my mail :)

  16. johndee Says:

    nevermind. already found it. 60mb to download 8-0. even more wicked quest than i expected…:D

  17. likopinko Says:

    Hi

    I am really excited. Very useful, i found lots of intresting things here. Your web site is helpful. Best regards!

    Bye

  18. Edward Z. Yang Says:

    The new location of the zip.zip file is here: http://files.edin.dk/php/win32/zip.zip

  19. deciacco Says:

    Hi,
    I’ve been working with compiling php 5 on Windows. I think I got it working, but I get many warnings during the compile. PHP seems to work fine afterwards, so I’m not sure if this is normal. (I vaguely remember warnings during a compile of PHP on linux, so perhaps they are normal, although I’ve always fixed warnings in my programs.)

    Anyway, I was wondering if you experienced the same thing when you did you compile. Most of the warnings are “warning C4142: benign redefinition of type” or other type conversion warnings.
    Thanks

  20. auroraeosrose Says:

    Compilation warnings are both legion and perfectly ignorable on a windows compile - only worry if you start getting errors or undefined symbol warnings

  21. Compile That PHP-GTK2, and More | MT-Soft Website Development Says:

    […] I lied. This document does care what OS you use. I cannot help you with Compiling on Windows. This post here on Elizabeth’s blog might help you out […]

  22. Pádraic Brady Says:

    Windows is hell on wheels! ;). Just to torture myself, I’m finding this doesn’t work out just yet on Windows Vista using everything except for replacing the SDK with the newer Windows SDK for Vista. Everything works until you try nmake and then it throws some horrific Fatal Error: NMAKE:fatal error U1077 “C:/Program Files/Microsoft Visual Studio 8…c1.exe” return ‘0×2′. For some reason VC’s c1.exe doesn’t like me, or maybe it’s the vengeful Windows platform itself in Vista. Anyone managed to compile under Vista yet? Google just seems to have failed - which is incredible; has a Vista attempt ever been made or mentioned anywhere???

  23. Pádraic Brady Says:

    Okay - Vista users. To compile around the error I noted, comment out line 897 (”sin6->sin6_addr = in6addr_any;”) and retry nmake. It allows a successful compile though I will not testify to what chaos the commenting out of that line may create down the line!

    The exact error preventing Vista compilation:

    mainnetwork.c(897) : error C2065: ‘in6addr_any’ : undeclared identifier
    mainnetwork.c(897) : error C2440: ‘=’ : cannot convert from ‘int’ to ‘IN6_ADDR’
    NMAKE : fatal error U1077: ‘”C:Program FilesMicrosoft Visual Studio 8VCBINcl.exe”‘ : return code ‘0×2′

    Maybe someone less rusty in C and with more VC/Windows compile superpowers can make sense of what’s going awry. Oh, and great tutorial Elizabeth!

  24. auroraeosrose Says:

    Unfortunately, the windows compile superpower to fix it would probably be me. I thought we fixed this error (it took some weird voodoo ifdefing) - looks like something is going awry…. I can’t take a look at the moment because I no longer have my Vista laptop but I’ll annoy some people…

  25. Pádraic Brady Says:

    Should be fun trying it all again with Visual Studio 2008 Express ;). What “bad things” can be expected by my commenting out that line do you know? Waiting to get back home so I can re-compile with a few more extensions and run PHP’s tests.

  26. auroraeosrose Says:

    in6addr_any undeclared is the issue - that SHOULD be being declared, if it’s NOT something is wrong in the compile….most likely a wayward define…

    Just commenting it out doesn’t fix the problem that it needs to be defined ;) see the compiler can’t find in6addr_any so it just “assumes” it’s an extern int - which is where the “cannot convert” error arises from and commenting that line out doesn’t fix the issue it just hides it, until you actually try to do something with ipv6…

  27. Pádraic Brady Says:

    Quick note that if anyone tries using VCE 2008 - there is no default.js or corewin_express.vsprops file to edit. Rather VCE2008 automatically detects when a Windows SDK is installed for Vista using a path check (see vcvars32.bat) and sets up the relevant environment as needed. I checked and the VCE2008 version of the integration document is inaccurate (marked pre-release version) and does not apply to the final version of VCE2008 for those two files - this threw me for a bit :). In case you go looking VCE2008 already includes v6.0A of the Windows SDK - but it will use v6.0 (the typical Vista SDK) when it’s installed. So apply the winres.h fix there.

    You may need to restart your PC once (or even twice after the SDK install for this to work) and of course make sure to register VCE2008. Now sure why it fails the first one or two times yet on my machine (you get that telling error about an invalid “-h” option). I noticed registration failed the first two attempts which might have caused the issue.

    Another observation is that I’m compiling without .NET Framework SDK 2.0 - maybe Elizabeth knows where the .NET SDK is required specifically. VCE2008 installs .NET Framework 3.5 but that’s not the SDK so probably nothing relevant. Haven’t done much compiling yet so it may be I’ve not hit something requiring the .NET SDK.

    Finally. Using VCE2005 I had an error in network.h in the main dir of the php source code. The error does not occur when building a PHP 5.3 snapshot of the source code. It seems specific to PHP 5.2.x versions. This error is apparently also specific to Windows Vista using the current Windows SDK For Vista Update.

  28. Compiling PHP for Windows Vista using Visual C++ Express 2008 - Seriously! | MT-Soft Website Development Says:

    […] information available is an excellent guide written by Elizabeth Marie Smith in December 2006 about compiling PHP5 and PHP-GTK2 using Visual C++ Express. The other basically refers back to Elizabeth’s article and adds some details on needing ICU […]

  29. developercast.com » Padraic Brady’s Blog: Compiling PHP for Windows Vista using Visual C++ Express 2008 - Seriously! Says:

    […] Visual C++ Express 2008, then my blog entry is largely another coat of sugar on top of Elizabeth’s guide to clear up any difference between the two […]

  30. Matthew Turland’s Blog: Custom building php on windows and linux | Development Blog With Code Updates : Developercast.com Says:

    […] gives his “laundry list” of things to download/have access to and the link to Elizabeth’s tutorial handy. Matthew found a few differences in his compile - an issue with IPv6 support and a pathing […]

  31. Javierfish Says:

    Hello Elizabeth. Hey thanx and congratulations for this great tutorial. I just can’t believe that php.net’s people don’t give such detailed instructions as yours!

    Anyway, I’m not pretty sure where to unzip the contents of zip.zip

    The contents of zip.zip contains in the first level the dev/ folder. If I extracted the contents of the php source files to c:php, the zip.zip content should be on c:phpdev ? Thank you again!

Leave a Reply

November 2006
S M T W T F S
« Oct   Dec »
 1234
567891011
12131415161718
19202122232425
2627282930  
Register
Login