This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13:38.33 cartman: sooooo | |
13:38.41 mru: hi cartman | |
13:38.48 cartman: mru: lo | |
13:39.03 cartman: michaelni: thanks for breaking fate & co. | |
13:41.33 lu_zero: ? | |
13:42.10 cartman: git.ffmpeg.org is not responding | |
13:42.15 cartman: didn't you get the memo? | |
13:43.20 michaelni: cartman, we have done no change to git.ffmpeg and fate.ffmpeg they point to where they always pointed to | |
13:43.36 michaelni: if mru chooses to shut servers down, thats out of our hands | |
13:43.50 mru: michaelni: stop telling lies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -ur fontconfig-2.8.0-orig/src/fcdir.c fontconfig-2.8.0/src/fcdir.c | |
--- fontconfig-2.8.0-orig/src/fcdir.c 2009-11-16 17:24:52.000000000 +0000 | |
+++ fontconfig-2.8.0/src/fcdir.c 2011-03-23 10:28:31.000000000 +0000 | |
@@ -203,8 +203,22 @@ | |
/* | |
* Scan file files to build font patterns | |
*/ | |
- for (i = 0; i < files->num; i++) | |
+ char buf1[512], buf2[512], pad[512], *str = &buf1[0], *prev = &buf2[0], *tmp; | |
+ int j, diff; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install development versions of gmp, mpfr, mpclib on the build system | |
(installing libmpc-dev on debian-based pulls all needed libraries) | |
alternatively also install ppl and cloog-ppl (libcloog-ppl-dev on debian-based) | |
sources for all of the above can be found in http://mirrors-us.seosue.com/gcc/infrastructure/ | |
get binutils, gcc-core, gcc-g++, mingwrt, w32api | |
extract all | |
ln -s w32api-*/ w32api # "w32api" symlink to the extracted dir; needed by mingwrt's compilation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
prefix = /usr | |
target = i686-mingw32 | |
# where cross-compiled libraries go / cross compiler searches for lib / include | |
tprefix = $(prefix)/$(target) | |
# version of packages to install | |
binutils_version = 2.21 | |
gcc_version = 4.5.2 | |
mingwrt_version = 3.18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env perl | |
use v5.10; | |
use strict; | |
use warnings; | |
use feature ':5.10'; | |
use Munin::Plugin; | |
use XML::Fast; | |
use Encode; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make sure we always have a running ssh-agent | |
# Try and reuse a running one if possible, otherwise start a new one | |
fail_agent_check () { | |
ssh-add -l >/dev/null 2>&1 | |
[ "$?" = 2 ]; | |
} | |
if [ -r "${HOME}/.ssh_agent" ]; then | |
# the .ssh_agent file already has an 'echo' so augment it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem Copyright (C): 2001, 2002, 2003, 2004, 2005 Earnie Boyd | |
rem mailto:[email protected] | |
rem This file is part of Minimal SYStem | |
rem http://www.mingw.org/msys.shtml | |
rem | |
rem File: msys.bat | |
rem Revision: 2.4 | |
rem Revision Date: December 8th, 2005 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.o | |
main | |
main.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
# Uses the CDR program from http://www.codeguru.com/cpp/w-p/system/cd-rom/article.php/c5775 | |
# Just remove the "eject () {" and the "}" lines to turn this into a standalone script | |
eject () { | |
if [ "$1" = "-t" ]; then | |
shift; | |
CDR close "$@" | |
else | |
CDR open "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CC=gcc | |
CFLAGS=-Wall -Wextra -Werror | |
LDFLAGS=-Wl,--as-needed | |
LDLIBS=-lm | |
all: q1 q2 q3 q4 q5 | |
q%: q%.c |
OlderNewer