svn commit: r439136 - head/games/openbubbles/files

Antoine Brodin antoine at FreeBSD.org
Sat Apr 22 08:26:01 UTC 2017


Author: antoine
Date: Sat Apr 22 08:25:59 2017
New Revision: 439136
URL: https://svnweb.freebsd.org/changeset/ports/439136

Log:
  Attempt to fix make patch by changing eol style
  
  Reported by:	pkg-fallout

Modified:
  head/games/openbubbles/files/patch-src_BFont.cpp   (contents, props changed)

Modified: head/games/openbubbles/files/patch-src_BFont.cpp
==============================================================================
--- head/games/openbubbles/files/patch-src_BFont.cpp	Sat Apr 22 07:34:50 2017	(r439135)
+++ head/games/openbubbles/files/patch-src_BFont.cpp	Sat Apr 22 08:25:59 2017	(r439136)
@@ -1,20 +1,20 @@
---- src/BFont.cpp.orig	2005-02-27 14:29:13 UTC
-+++ src/BFont.cpp
-@@ -314,7 +314,7 @@ int BFont_TextWidthFont(BFont_Info *Font
- /* counts the spaces of the strings */
- static int count (const char *text)
- {
--    char *p = NULL;
-+    const char *p = NULL;
-     int pos = -1;
-     int i   = 0;
- 
-@@ -339,7 +339,7 @@ void BFont_JustifiedPutStringFont(SDL_Su
-     int dif;
- 
-     char *strtmp;
--    char *p;
-+    const char *p;
-     int pos = -1;
-     int xpos = 0;
- 
+--- src/BFont.cpp.orig	2017-04-22 08:18:12 UTC
++++ src/BFont.cpp
+@@ -314,7 +314,7 @@ int BFont_TextWidthFont(BFont_Info *Font
+ /* counts the spaces of the strings */
+ static int count (const char *text)
+ {
+-    char *p = NULL;
++    const char *p = NULL;
+     int pos = -1;
+     int i   = 0;
+ 
+@@ -339,7 +339,7 @@ void BFont_JustifiedPutStringFont(SDL_Su
+     int dif;
+ 
+     char *strtmp;
+-    char *p;
++    const char *p;
+     int pos = -1;
+     int xpos = 0;
+ 


More information about the svn-ports-all mailing list