mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
spell check with codespell
This commit is contained in:
@@ -126,7 +126,7 @@ cd "openssl-$OPENSSLVERSION"
|
||||
|
||||
case `pwd` in
|
||||
*\ * )
|
||||
echo "The build path (`pwd`) contains whitepsaces - fix this."
|
||||
echo "The build path (`pwd`) contains whitespaces - fix this."
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
@@ -146,8 +146,8 @@ echo "Copying header files ..."
|
||||
cp -r include/ ../../include/
|
||||
echo
|
||||
|
||||
echo "Combining to unversal binary"
|
||||
echo "Combining to universal binary"
|
||||
lipo -create ../../lib/libcrypto_*.a -o ../../lib/libcrypto.a
|
||||
lipo -create ../../lib/libssl_*.a -o ../../lib/libssl.a
|
||||
|
||||
echo "Finished. Please verify the contens of the openssl folder in \"$INSTALLDIR\""
|
||||
echo "Finished. Please verify the contents of the openssl folder in \"$INSTALLDIR\""
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Android build confguration
|
||||
# Android build configuration
|
||||
#
|
||||
# Note: This is a simple configuration to build all
|
||||
# architectures in one rush.
|
||||
# Since android 64 bit support was introduced with NDK API 21
|
||||
# this is the minimal common denominator.
|
||||
# If you require support for older NDK API levels,
|
||||
# create seperate configurations for each NDK API level
|
||||
# create separate configurations for each NDK API level
|
||||
# and architecture you want to support.
|
||||
WITH_OPENH264=0
|
||||
WITH_OPENSSL=1
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Android build confguration
|
||||
# Android build configuration
|
||||
#
|
||||
# Note: This is a simple configuration to build all
|
||||
# architectures in one rush.
|
||||
# Since android 64 bit support was introduced with NDK API 21
|
||||
# this is the minimal common denominator.
|
||||
# If you require support for older NDK API levels,
|
||||
# create seperate configurations for each NDK API level
|
||||
# create separate configurations for each NDK API level
|
||||
# and architecture you want to support.
|
||||
WITH_OPENH264=1
|
||||
WITH_OPENSSL=1
|
||||
|
||||
@@ -90,7 +90,7 @@ function common_run {
|
||||
RES=$?
|
||||
if [[ $RES -ne 0 ]];
|
||||
then
|
||||
echo "[ERROR] $@ retured $RES"
|
||||
echo "[ERROR] $@ returned $RES"
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Android build confguration
|
||||
# Android build configuration
|
||||
#
|
||||
# Note: This is a simple configuration to build all
|
||||
# architectures in one rush.
|
||||
# Since android 64 bit support was introduced with NDK API 21
|
||||
# this is the minimal common denominator.
|
||||
# If you require support for older NDK API levels,
|
||||
# create seperate configurations for each NDK API level
|
||||
# create separate configurations for each NDK API level
|
||||
# and architecture you want to support.
|
||||
WITH_OPENH264=0
|
||||
WITH_OPENSSL=1
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Android build confguration
|
||||
# Android build configuration
|
||||
#
|
||||
# Note: This is a simple configuration to build all
|
||||
# architectures in one rush.
|
||||
# Since android 64 bit support was introduced with NDK API 21
|
||||
# this is the minimal common denominator.
|
||||
# If you require support for older NDK API levels,
|
||||
# create seperate configurations for each NDK API level
|
||||
# create separate configurations for each NDK API level
|
||||
# and architecture you want to support.
|
||||
WITH_OPENH264=0
|
||||
WITH_OPENSSL=1
|
||||
|
||||
@@ -58,7 +58,7 @@ def padhexa(v):
|
||||
def write_struct(fp, struct, name, url, base, inv = False, typemap = None):
|
||||
li = requests.get(url)
|
||||
if li.status_code != requests.codes.ok:
|
||||
print('Could not fetch ' + str(url) + ', reponse code ' + str(li.status_code))
|
||||
print('Could not fetch ' + str(url) + ', response code ' + str(li.status_code))
|
||||
sys.exit(1)
|
||||
headers, languages = parse_html(li.text)
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ if [ ! -f $ADB ] || [ ! -x $ADB ]; then
|
||||
exit -3
|
||||
fi
|
||||
|
||||
# Do the acutal work in a temporary directory.
|
||||
# Do the actual work in a temporary directory.
|
||||
SRC=`mktemp -d`
|
||||
cd $SRC
|
||||
$ADB $@ pull /sdcard/gmon.out
|
||||
|
||||
Reference in New Issue
Block a user