I hereby claim:
- I am ksophocleous on github.
- I am ksophocleous (https://keybase.io/ksophocleous) on keybase.
- I have a public key whose fingerprint is B186 D47A 55A7 38FB 63F4 7BE6 7FDA 3B20 3423 E4C5
To claim this, I am signing this object:
#!/bin/sh | |
set -e | |
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | |
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list | |
sudo apt-get update && sudo apt-get upgrade -y | |
sudo apt-get install -y \ | |
cmake build-essential libtool pkg-config automake git autotools-dev automake autoconf libtool g++ autopoint make \ |
diff -Naur gtk-sharp-2.12.10/glib/glue/list.c gtk-sharp-2.12.10-mine/glib/glue/list.c | |
--- gtk-sharp-2.12.10/glib/glue/list.c 2009-01-07 16:54:06.000000000 +0000 | |
+++ gtk-sharp-2.12.10-mine/glib/glue/list.c 2015-03-23 23:33:56.470499598 +0000 | |
@@ -20,7 +20,7 @@ | |
*/ | |
-#include <glib/glist.h> | |
+#include <glib.h> |
#!/bin/bash | |
DEST=/etc/pki/ca-trust/extracted | |
# OpenSSL PEM bundle that includes trust flags | |
# (BEGIN TRUSTED CERTIFICATE) | |
/usr/bin/p11-kit extract --format=openssl-bundle --filter=certificates --overwrite $DEST/openssl/ca-bundle.trust.crt | |
/usr/bin/p11-kit extract --format=pem-bundle --filter=ca-anchors --overwrite --purpose server-auth $DEST/pem/tls-ca-bundle.pem | |
/usr/bin/p11-kit extract --format=pem-bundle --filter=ca-anchors --overwrite --purpose email $DEST/pem/email-ca-bundle.pem | |
/usr/bin/p11-kit extract --format=pem-bundle --filter=ca-anchors --overwrite --purpose code-signing $DEST/pem/objsign-ca-bundle.pem |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
dumpbin /nologo /exports ${LIBNAME}.dll > exports.txt | |
echo "EXPORTS" > exports.def | |
tail -n +17 exports.txt | awk '{ $1=""; $2=""; $3=""; print $0 }' | sed -r 's/\s*(.*?)\s*$/\1/' | sed '/^$/d' >> exports.def | |
lib /def:exports.def ${LIBNAME}.lib | |
rm -f exports.txt exports.def |
diff --git a/CMakeLists.txt b/CMakeLists.txt | |
index 0fe939d..26e3b7e 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -7,12 +7,35 @@ set(VERSION "1.2.11") | |
option(ASM686 "Enable building i686 assembly implementation") | |
option(AMD64 "Enable building amd64 assembly implementation") | |
+option(BUILD_EXAMPLES "Enable building example binaries" ON) | |
+ |