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
all:Test.class | |
test:all | |
java Test | |
%.class:%.java | |
javac '$<' |
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
. |
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
#!/bin/sh | |
set -e; | |
BASE_DIRECTORY="$(cd "$(dirname "$0")"&&pwd)" | |
SSH_SOCKET="${BASE_DIRECTORY}"/%r.%h.%p.ssh_socket | |
SSH_HOST=localhost | |
#Exit ssh master connection when the script exits or is killed. | |
trap "ssh -q -o ControlMaster=no -o ControlPath=${SSH_SOCKET} -O exit ${SSH_HOST};" SIGINT SIGTERM EXIT; |
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 --git a/compat/unsafe.h b/compat/unsafe.h | |
index d58f546..6c9f7ab 100644 | |
--- a/compat/unsafe.h | |
+++ b/compat/unsafe.h | |
@@ -5,7 +5,7 @@ | |
* Trap unintentional use of functions unsafe for use within squid. | |
*/ | |
-#if !SQUID_NO_STRING_BUFFER_PROTECT | |
+#if !SQUID_NO_STRING_BUFFER_PROTECT && 0 |