When compiling git from source, I often run into this problem:
% make prefix=$HOME all doc info
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C Documentation all
| // | |
| // PBProbableWebDataDetective.m | |
| // MyPasteboard | |
| // | |
| // Created by xxx on 2021/7/21. | |
| // | |
| #import "PBProbableWebDataDetective.h" | |
| #import <CFNetwork/CFNetwork.h> | |
| //#import <UIKit/UIKit.h> |
| // | |
| // MobileProvision.swift | |
| // Fluux.io | |
| // | |
| // Created by Mickaël Rémond on 03/11/2018. | |
| // Copyright © 2018 ProcessOne. | |
| // Distributed under Apache License v2 | |
| // | |
| import Foundation |
| // | |
| // MobileProvision.swift | |
| // Fluux.io | |
| // | |
| // Created by Mickaël Rémond on 03/11/2018. | |
| // Copyright © 2018 ProcessOne. | |
| // Distributed under Apache License v2 | |
| // | |
| import Foundation |
| #!/bin/sh | |
| # Usage: | |
| # wget -O- https://gist.githubusercontent.com/ifduyue/dea03b4e139c5758ca114770027cf65c/raw/install-proxychains-ng.sh | sudo bash -s | |
| set -eu | |
| version=4.14 | |
| wget https://github.com/rofl0r/proxychains-ng/archive/v$version.tar.gz | |
| tar xf v$version.tar.gz |
| android.permission.ACCESS_ALL_DOWNLOADS | |
| android.permission.ACCESS_BLUETOOTH_SHARE | |
| android.permission.ACCESS_CACHE_FILESYSTEM | |
| android.permission.ACCESS_CHECKIN_PROPERTIES | |
| android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY | |
| android.permission.ACCESS_DOWNLOAD_MANAGER | |
| android.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED | |
| android.permission.ACCESS_DRM_CERTIFICATES | |
| android.permission.ACCESS_EPHEMERAL_APPS | |
| android.permission.ACCESS_FM_RADIO |
| # How to uninstall Razer Synapse 2 ( https://www.razerzone.com/synapse-2 ) | |
| # on OS X (10.11-10.13) (El Capitan, Sierra, High Sierra) | |
| # without using Razer's official uninstall tool. | |
| # Tested on OS X 10.11.5 in July 2016. | |
| # Edited with additional steps for later OS X versions, | |
| # contributed by commenters on this gist. | |
| # Step 1: In your terminal: stop and remove launch agents | |
| launchctl remove com.razer.rzupdater |
| // | |
| // NVRAMManager.swift | |
| // | |
| // Created by Matt Hansen on 1/30/16. | |
| // The Pennsylvania State University. | |
| // | |
| // http://www.opensource.apple.com/source/system_cmds/system_cmds-643.30.1/nvram.tproj/nvram.c | |
| import IOKit | |
| import Foundation |
| import Darwin | |
| let handle = dlopen("/usr/lib/libc.dylib", RTLD_NOW) | |
| let sym = dlsym(handle, "random") | |
| let functionPointer = UnsafeMutablePointer<() -> CLong>(sym) | |
| let result = functionPointer.memory() | |
| println(result) |