unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob eb00314a3d38c053b535f5d6cc79d64a1c9a7073 3861 bytes (raw)
name: patches/pinball-missing-separators.patch 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
 
From: Markus Koschany <apo@gambaru.de>
Date: Sun, 3 Aug 2014 22:50:46 +0200
Subject: missing separators

Bug: https://bugs.debian.org/750082

---
 src/Makefile.am  | 14 +++++++-------
 src/Makefile.in  | 14 +++++++-------
 test/Makefile.am |  2 +-
 test/Makefile.in |  2 +-
 4 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index fbd7e8f..96768d3 100755
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -29,7 +29,7 @@ Script.cpp \
 StateBehavior.cpp \
 Table.cpp
 
-dnl libemilia_pin_la_SOURCES = $(libemilia_pin_a_SOURCES)
+# libemilia_pin_la_SOURCES = $(libemilia_pin_a_SOURCES)
 
 pininclude_HEADERS = \
 ArmBehavior.h \
@@ -56,10 +56,10 @@ Table.h
 # libemilia_pin.a libemilia_addon.a  libemilia_base.a libltdlc.a
 wpinball.exe:  ${pinball_OBJECTS} ${pinball_DEPENDENCIES}
 	${GCCLOCALDIR}g++ -g -W -Wall -O2 -o$@ $^ \
- -lSDL_mixer -lvorbisfile -lvorbis -logg -lsmpeg \
- -lSDL_image -lSDLmain -lSDL \
- -lglu32 -lopengl32 -ljpeg -lpng  \
- -lwinmm -luser32 -lgdi32 -ldxguid   \
- -lmingw32 -lSDLmain -lSDL  -mwindows \
- -L${GCCLOCALDIR}../lib
+	-lSDL_mixer -lvorbisfile -lvorbis -logg -lsmpeg \
+	-lSDL_image -lSDLmain -lSDL \
+	-lglu32 -lopengl32 -ljpeg -lpng \
+	-lwinmm -luser32 -lgdi32 -ldxguid \
+	-lmingw32 -lSDLmain -lSDL  -mwindows \
+	-L${GCCLOCALDIR}../lib
 # !-rzr : # have to solve it later # -lstdc++
diff --git a/src/Makefile.in b/src/Makefile.in
index ea7651b..8e95cd6 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -505,7 +505,7 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-am \
 	uninstall-pinincludeHEADERS uninstall-pinlibLIBRARIES
 
 
-dnl libemilia_pin_la_SOURCES = $(libemilia_pin_a_SOURCES)
+	dnl libemilia_pin_la_SOURCES = $(libemilia_pin_a_SOURCES)
 
 # !+rzr : This trick workaround a bad generated rule (under Linux mingw32)
 # src/ litool returns:  -L/usr/local//lib /usr/lib/libjpeg.so
@@ -514,12 +514,12 @@ dnl libemilia_pin_la_SOURCES = $(libemilia_pin_a_SOURCES)
 # libemilia_pin.a libemilia_addon.a  libemilia_base.a libltdlc.a
 wpinball.exe:  ${pinball_OBJECTS} ${pinball_DEPENDENCIES}
 	${GCCLOCALDIR}g++ -g -W -Wall -O2 -o$@ $^ \
- -lSDL_mixer -lvorbisfile -lvorbis -logg -lsmpeg \
- -lSDL_image -lSDLmain -lSDL \
- -lglu32 -lopengl32 -ljpeg -lpng  \
- -lwinmm -luser32 -lgdi32 -ldxguid   \
- -lmingw32 -lSDLmain -lSDL  -mwindows \
- -L${GCCLOCALDIR}../lib
+	-lSDL_mixer -lvorbisfile -lvorbis -logg -lsmpeg \
+	-lSDL_image -lSDLmain -lSDL \
+	-lglu32 -lopengl32 -ljpeg -lpng \
+	-lwinmm -luser32 -lgdi32 -ldxguid \
+	-lmingw32 -lSDLmain -lSDL  -mwindows \
+	-L${GCCLOCALDIR}../lib
 # !-rzr : # have to solve it later # -lstdc++
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
diff --git a/test/Makefile.am b/test/Makefile.am
index d87cf34..ea3ffc9 100755
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -4,7 +4,7 @@ testlibdir = $(EM_LIBDIR)
 testdatadir = $(pkgdatadir)
 
 noinst_PROGRAMS = scale simple light texture load explode collision signal billboard font thread menu joy sound trans math misc varray unittest
-dnl noinst_PROGRAMS = unittest
+# noinst_PROGRAMS = unittest
 
 INCLUDES = -I../base -I../addon -I../src @INCLTDL@
 LDADD = ../src/libemilia_pin.a ../addon/libemilia_addon.a ../base/libemilia_base.a @LIBLTDL@
diff --git a/test/Makefile.in b/test/Makefile.in
index 6ba2646..47654dc 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -621,7 +621,7 @@ uninstall-am: uninstall-info-am uninstall-testlibLTLIBRARIES
 	mostlyclean-generic mostlyclean-libtool tags uninstall \
 	uninstall-am uninstall-info-am uninstall-testlibLTLIBRARIES
 
-dnl noinst_PROGRAMS = unittest
+# noinst_PROGRAMS = unittest
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
 .NOEXPORT:

debug log:

solving eb00314a3d38c053b535f5d6cc79d64a1c9a7073 ...
found eb00314a3d38c053b535f5d6cc79d64a1c9a7073 in https://git.savannah.gnu.org/cgit/guix.git

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).