--- /dev/null
+--- ./vinagre/vinagre-reverse-vnc-listener-dialog.c.orig 2015-02-22 17:05:00.957604000 +0100
++++ ./vinagre/vinagre-reverse-vnc-listener-dialog.c 2015-02-22 17:05:21.859349800 +0100
+@@ -21,7 +21,9 @@
+ #include <config.h>
+
+ #include <sys/types.h>
++#ifndef G_OS_WIN32
+ #include <sys/socket.h>
++#endif
+ #include <net/if.h>
+ #include <arpa/inet.h>
+ #include <netinet/in.h>
+--- ./vinagre/vinagre-reverse-vnc-listener.c.orig 2015-02-22 17:04:39.435874500 +0100
++++ ./vinagre/vinagre-reverse-vnc-listener.c 2015-02-22 17:04:47.642312200 +0100
+@@ -22,7 +22,9 @@
+ #include <stdlib.h>
+ #include <stdio.h>
+ #include <sys/types.h>
++#ifndef G_OS_WIN32
+ #include <sys/socket.h>
++#endif
+ #include <netinet/in.h>
+ #include <netinet/tcp.h>
+ #include <arpa/inet.h>
--- /dev/null
+# Maintainer: Andrea Zagli <andrea.zagli.free@gmail.com>
+
+_realname=vinagre
+pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
+pkgver=3.14.3
+pkgrel=1
+arch=('any')
+pkgdesc="Remote desktop client for the GNOME Desktop (mingw-w64)"
+options=(strip staticlibs)
+depends=("${MINGW_PACKAGE_PREFIX}-gtk3"
+ "${MINGW_PACKAGE_PREFIX}-gsettings-desktop-schemas"
+ "${MINGW_PACKAGE_PREFIX}-adwaita-icon-theme"
+ "${MINGW_PACKAGE_PREFIX}-gtk-vnc"
+ "${MINGW_PACKAGE_PREFIX}-spice-gtk"
+ "${MINGW_PACKAGE_PREFIX}-libsecret")
+options=('strip' 'staticlibs')
+license=("GPL 2")
+url="http://www.gnome.org"
+install=vinagre-${CARCH}.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${_realname}/${pkgver%.*}/${_realname}-$pkgver.tar.xz
+ 001-win.patch)
+sha256sums=('f82d8c66684a00a79422724b0e1efad28ba35ba21a92dc7dcb867ed7b64659f0'
+ '380e82d8fb3468dac99834f2ec958bc86ba5957a61ed2c34b8489d286168a6ee')
+
+prepare() {
+ cd "${srcdir}"/${_realname}-${pkgver}
+
+ patch -p1 -i ${srcdir}/001-win.patch
+
+ #autoreconf -fi
+}
+
+build() {
+ mkdir -p build-${MINGW_CHOST}
+ cd build-${MINGW_CHOST}
+
+ ../${_realname}-${pkgver}/configure \
+ --prefix=${MINGW_PREFIX} \
+ --libexecdir=${MINGW_PREFIX}/lib \
+ --host=${MINGW_CHOST} \
+ --target=${MINGW_CHOST} \
+ --build=${MINGW_CHOST} \
+ --disable-ssh \
+ --disable-rdp \
+ --without-avahi \
+ --without-telepathy
+
+ make
+}
+
+package() {
+ cd "$srcdir/build-${MINGW_CHOST}"
+ make DESTDIR=$pkgdir install
+}