Changeset 20896 in webkit


Ignore:
Timestamp:
Apr 15, 2007 10:35:53 AM (17 years ago)
Author:
kevino
Message:

Adding wx API, wxBrowser sample, and build script to wxWebKit branch.

Location:
branches/wx-port-alpha/trunk
Files:
22 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/wx-port-alpha/trunk/WebKitTools/Scripts/build-webkit

    r19910 r20896  
    4141my $xsltSupport = 1;
    4242my $colorSupport = 1; # Default: colorize make output
     43my $wxBuild = 0;
    4344
    4445our @cmakeBuild;
     
    4950           'xslt!' => \$xsltSupport,
    5051           'color!' => \$colorSupport,
    51            'cmake!' => \@cmakeBuild);
     52           'cmake!' => \@cmakeBuild,
     53           'wx!' => \$wxBuild);
     54           
     55if ($wxBuild){
     56    system "./build-wxwebkit";
     57    exit 0;
     58}
    5259
    5360checkRequiredSystemConfig();
  • branches/wx-port-alpha/trunk/WebKitTools/Scripts/install-unix-extras

    r14406 r20896  
    3939mkdir -p $DL_DIR
    4040mkdir -p $DEPS_PREFIX
     41
     42SHLIB_EXT=so
     43if [ "${OSTYPE:0:6}" = "darwin" ]; then
     44    SHLIB_EXT=dylib
     45fi
    4146
    4247ICU_VERSION="3.4.1"
     
    9196
    9297# TODO: What would be a good way to test for this?
    93 if [ ! -f $DEPS_PREFIX/lib/libiconv.dylib ]; then
     98if [ ! -f $DEPS_PREFIX/lib/libiconv.$SHLIB_EXT ]; then
    9499  $DL_CMD -o $DL_DIR/$ICONV_TARBALL $ICONV_URL
    95100
  • branches/wx-port-alpha/trunk/WebKitTools/Scripts/install-win-extras

    r17551 r20896  
    9797`chmod 755 ../zlib/bin/*.dll`;
    9898
     99
     100my $CURLFILE="libcurl-7.15.1-msvc-win32-ssl-0.9.8a-zlib-1.2.3.zip";
     101my $CURLURL="http://my.guardpuppy.com/" . $CURLFILE;
     102if (! -e $CURLFILE) {
     103    print "Downloading " . $CURLFILE . "...\n\n";
     104    `rm -rf libcurl*`;
     105    `curl -O $CURLURL`;
     106    print "\nInstalling " . $CURLFILE . "...\n";
     107    `unzip $CURLFILE -d libcurl`;
     108    `rm -rf ../libcurl`;
     109    `cp -rp libcurl ../libcurl`;
     110    if ( -e "../libcurl/libcurl_imp.lib") {
     111        `mv ../libcurl/libcurl_imp.lib ../libcurl/libcurl.lib`;
     112    }
     113}
     114`chmod 755 ../libcurl/*.dll`;
     115
     116if (! -e "pthreads-w32-2-8-0-release.exe") {
     117    print "Downloading pthreads-w32-2-8-0-release.exe...\n\n";
     118    `rm -rf pthreads*`;
     119    `curl -O ftp://sourceware.org/pub/pthreads-win32/pthreads-w32-2-8-0-release.exe`;
     120    print "\nInstalling pthreads-w32-2-8-0-release.exe...\n";
     121    `unzip pthreads-w32-2-8-0-release.exe`;
     122    `rm -rf ../pthreads`;
     123    `cp -rp Pre-built.2 ../pthreads`;
     124}
     125`chmod 755 ../pthreads/lib/*.dll`;
     126
     127
    99128my $PROGRAMFILES = $ENV{"PROGRAMFILES"};
    100129my $unixProgramFiles = `cygpath -u "$PROGRAMFILES"`;
  • branches/wx-port-alpha/trunk/WebKitTools/Scripts/regenerate-makefiles

    r17003 r20896  
    4545mkdir -p $DEPS_PREFIX
    4646
    47 BKL_VERSION="0.2.0"
    48 BKL_TARBALL="bakefile-$BKL_VERSION-msvs2005.tar.gz"
    49 BKL_URL="http://kevino.theolliviers.com/$BKL_TARBALL"
    50 #BKL_URL="http://mesh.dl.sourceforge.net/sourceforge/bakefile/$BKL_TARBALL"
     47BKL_VERSION="0.2.2"
     48BKL_TARBALL="bakefile-$BKL_VERSION.tar.gz"
     49BKL_URL="http://wxwebkit.wxcommunity.com/$BKL_TARBALL"
    5150
    5251BKFILE=`which bakefile`
Note: See TracChangeset for help on using the changeset viewer.