~tuxator/midori/speeddial-refresh

« back to all changes in this revision

Viewing changes to win32/crossconfig.sh

  • Committer: Christian Dywan
  • Author(s): Peter de Ridder
  • Date: 2011-04-26 23:42:47 UTC
  • Revision ID: git-v1:d36e12f21d297b6ca5bf0daa38b452fccdf318d8
Provide build scripts for win32 releases

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# Copyright (C) 2010-2011 Peter de Ridder <peter@xfce.org>
 
4
#
 
5
# This library is free software; you can redistribute it and/or
 
6
# modify it under the terms of the GNU Lesser General Public
 
7
# License as published by the Free Software Foundation; either
 
8
# version 2.1 of the License, or (at your option) any later version.
 
9
#
 
10
# See the file COPYING for the full license text.
 
11
 
 
12
export MINGW_PREFIX=/usr/i686-pc-mingw32/sys-root/mingw
 
13
export PATH=$MINGW_PREFIX/bin:$PATH
 
14
export PKG_CONFIG_PATH=$MINGW_PREFIX/lib/pkgconfig
 
15
export PKG_CONFIG_LIBDIR=
 
16
export MINGW_BUILD=`gcc -dumpmachine`
 
17
export MINGW_TARGET=i386-mingw32
 
18
 
 
19
CC=i386-mingw32-gcc ./configure --prefix=$MINGW_PREFIX $@
 
20