summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2018-06-21 22:47:42 -0400
committerMike Frysinger <vapier@gentoo.org>2018-06-21 22:47:42 -0400
commitfd06f7f83c5e78bf5b7f5397746b4e5ee4366250 (patch)
tree7b49e7e14c1b3a3d71cec56edf591f7a4600ee3d /windows
parentaac77143ddeb561216d9fe63546d17a1d2156bae (diff)
downloadlibgd-fd06f7f83c5e78bf5b7f5397746b4e5ee4366250.tar.gz
clean up trailing whitespace/newlines
This is preparation for adding some linting checks for new commits from people. Shouldn't be any functional changes here (tests still pass!).
Diffstat (limited to 'windows')
-rwxr-xr-xwindows/libgd.rc3
-rw-r--r--windows/msys/Makefile10
-rw-r--r--windows/msys/README.MSYS.md4
-rwxr-xr-xwindows/msys/run_tests.sh7
4 files changed, 3 insertions, 21 deletions
diff --git a/windows/libgd.rc b/windows/libgd.rc
index dfe6ff0..bbb7167 100755
--- a/windows/libgd.rc
+++ b/windows/libgd.rc
@@ -38,7 +38,7 @@ BEGIN
VALUE "FileDescription", "LIBGD" "\0"
VALUE "FileVersion", GD_VERSION_STRING "\0"
VALUE "InternalName", "bgd.dll" "\0"
- VALUE "LegalCopyright", "Copyright © 1997-2008 Thomas Boutell, Pierre A. Joye and contributors, see COPYING\0"
+ VALUE "LegalCopyright", "Copyright © 1997-2008 Thomas Boutell, Pierre A. Joye and contributors, see COPYING\0"
VALUE "LegalTrademarks", "Thomas Boutell, Pierre A. Joye and contributors\0"
VALUE "OriginalFilename", "bgd.dll" "\0"
VALUE "PrivateBuild", "\0"
@@ -56,4 +56,3 @@ END
#ifdef MC_INCLUDE
#include MC_INCLUDE
#endif
-
diff --git a/windows/msys/Makefile b/windows/msys/Makefile
index 3b1ced4..3af2faa 100644
--- a/windows/msys/Makefile
+++ b/windows/msys/Makefile
@@ -131,13 +131,3 @@ $(TARGET): $(OBJ)
$(OBJ) $(LIBS)
include deps.mk
-
-
-
-
-
-
-
-
-
-
diff --git a/windows/msys/README.MSYS.md b/windows/msys/README.MSYS.md
index 601802d..d17011f 100644
--- a/windows/msys/README.MSYS.md
+++ b/windows/msys/README.MSYS.md
@@ -59,7 +59,3 @@ use one of the other build systems (or add them yourself.)
worth.
* LibFontconfig: I couldn't find Windows binaries for it anywhere
reputable.
-
-
-
-
diff --git a/windows/msys/run_tests.sh b/windows/msys/run_tests.sh
index 22de13c..594fd07 100755
--- a/windows/msys/run_tests.sh
+++ b/windows/msys/run_tests.sh
@@ -5,7 +5,7 @@ set -e
# Parameters
DLLPATH_EXTRA=$1 # Path to supporting DLLs
CFLAGS_EXTRA=$2 # Extra C flags
-
+
LOG=run_tests.log
@@ -49,7 +49,7 @@ for test in `find . -name \*.c | grep -v '^./gdtest'`; do
compile_failures=`expr $compile_failures + 1`
continue
fi
-
+
echo "Running $exe:" >> $LOG
if $exe 2>&1 >> $LOG; then
echo "PASS: $test"
@@ -62,6 +62,3 @@ done
echo "$failures failures and $compile_failures compile failures out of $count tests."
echo "Error messages in $LOG"
-
-
-