Skip to content

Commit

Permalink
Smallish changes. Patch by XhmikosR.
Browse files Browse the repository at this point in the history
  • Loading branch information
codesquid committed Nov 1, 2011
1 parent af23c0c commit 0e7ac33
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
10 changes: 5 additions & 5 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /bin/sh

while test $# != 0; do
case $1 in
case $1 in
-[cC])
no_check=1
;;
Expand All @@ -26,7 +26,7 @@ printf '\033[1mHINT:\033[0m If this script fails, please download a recent sourc
failedAclocal()
{
printf '\n\033[1;31m*** Failed to execute aclocal\033[0m\n'
echo ''
echo ''
echo ' If you get errors about undefined symbols, make sure'
echo ' that the corresponding .m4 file is in your aclocal search'
echo ' directory.'
Expand Down Expand Up @@ -106,7 +106,7 @@ version_check()

if [ ! -z "$MINOR" ]; then VERSION=$VERSION.$MINOR; else MINOR=0; fi
if [ ! -z "$MICRO" ]; then VERSION=$VERSION.$MICRO; else MICRO=0; fi

if [ x$SILENT != x2 ]; then
if [ ! -z "$VERSION" ]; then
printf "Checking for $PACKAGE >= $VERSION ... "
Expand Down Expand Up @@ -149,7 +149,7 @@ version_check()
echo "found $pkg_version, ok."
return 0
fi

# start checking the version
if [ "$pkg_major" -lt "$MAJOR" ]; then
WRONG=1
Expand Down Expand Up @@ -220,7 +220,7 @@ $aclocal -I m4 || failedAclocal
echo "3.2 Running autoheader... "
$autoheader

echo "3.3 Runnig libtoolize... "
echo "3.3 Running libtoolize... "
$libtoolize --automake -c -f

echo "3.4 Running autoconf... "
Expand Down
7 changes: 5 additions & 2 deletions src/interface/resources/windows_manifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<assemblyIdentity
version="0.64.1.0"
version="3.5.1.0"
processorArchitecture="x86"
name="FileZilla"
type="win32"
Expand All @@ -10,7 +10,10 @@
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel
level="asInvoker"
uiAccess="false"
/>
</requestedPrivileges>
</security>
</trustInfo>
Expand Down
5 changes: 4 additions & 1 deletion src/putty/windows/windows_manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel
level="asInvoker"
uiAccess="false"
/>
</requestedPrivileges>
</security>
</trustInfo>
Expand Down

0 comments on commit 0e7ac33

Please sign in to comment.