I hereby claim:
- I am tholu on github.
- I am tholu (https://keybase.io/tholu) on keybase.
- I have a public key ASDK23EvI4L0L5hBM0SP314PMKZTBFQi6aZpe6WcC9twqgo
To claim this, I am signing this object:
diff --git a/include/my_global.h b/include/my_global.h | |
index 86ef5f882f6..3502922b74b 100644 | |
--- a/include/my_global.h | |
+++ b/include/my_global.h | |
@@ -159,7 +159,7 @@ | |
# if defined(__i386__) || defined(__ppc__) | |
# define SIZEOF_CHARP 4 | |
# define SIZEOF_LONG 4 | |
-# elif defined(__x86_64__) || defined(__ppc64__) | |
+# elif defined(__x86_64__) || defined(__ppc64__) || defined(__aarch64__) || defined(__arm64__) |
# -*- python -*- | |
# | |
# ==================================================================== | |
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information | |
# regarding copyright ownership. The ASF licenses this file | |
# to you under the Apache License, Version 2.0 (the | |
# "License"); you may not use this file except in compliance | |
# with the License. You may obtain a copy of the License at |
#!/bin/bash | |
# This is a modification of gitlab-gc.sh script created by Peter Bábics (pbabics/gitlab-gc.sh) | |
# Improvements | |
# - Searching in all BASE_PATH, not fixing the search to a depth of 2 | |
# - Directories without valid tags or revisions directories won't be processed (to avoid unexpected issues) | |
# - Logging in case there's nothing to delete | |
# - running registry-garbage-collect only when something has been deleted |
#!/bin/bash | |
# | |
# This script configures WordPress file permissions based on recommendations | |
# from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
# | |
# Author: Michael Conigliaro <mike [at] conigliaro [dot] org> | |
# | |
WP_OWNER=www-data # <-- wordpress owner | |
WP_GROUP=www-data # <-- wordpress group | |
WP_ROOT=$1 # <-- wordpress root directory |
I hereby claim:
To claim this, I am signing this object:
Index: subversion/libsvn_subr/io.c | |
=================================================================== | |
--- subversion/libsvn_subr/io.c (revision 1527683) | |
+++ subversion/libsvn_subr/io.c (working copy) | |
@@ -154,7 +154,7 @@ | |
const char *path_apr, | |
apr_pool_t *pool) | |
{ | |
-#if defined(WIN32) || defined(DARWIN) | |
+#if defined(WIN32) |
This is my variation from the original patch and that also includes the suggested correction for the bug with secure websocket 'wss://'.
The difference is that I avoid modifying the mod_utils.c and the mod_proxy.h so that if the mod_proxy module has been embedded in the main httpd binary then it will work and you won't get the
test 1234567890 |
--- subversion/libsvn_subr/path.c 2013-05-14 00:40:07.000000000 +0200 | |
+++ subversion/libsvn_subr/path.c 2013-07-02 23:39:04.000000000 +0200 | |
@@ -40,6 +40,10 @@ | |
#include "dirent_uri.h" | |
+#ifdef DARWIN | |
+#include <CoreFoundation/CoreFoundation.h> | |
+#endif | |
+ |
Index: subversion/libsvn_subr/path.c | |
=================================================================== | |
--- subversion/libsvn_subr/path.c (revision 1499077) | |
+++ subversion/libsvn_subr/path.c (working copy) | |
@@ -40,6 +40,9 @@ | |
#include "dirent_uri.h" | |
+#if defined(DARWIN) | |
+#include <CoreFoundation/CoreFoundation.h> |