r15086 - in packages/trunk/slashem/debian: . patches

Vincent Cheng vcheng at moszumanska.debian.org
Mon May 12 07:59:30 UTC 2014


Author: vcheng
Date: 2014-05-12 07:59:30 +0000 (Mon, 12 May 2014)
New Revision: 15086

Modified:
   packages/trunk/slashem/debian/changelog
   packages/trunk/slashem/debian/patches/slashem-debian.patch
Log:
Fix broken macro causing LINUX to not be defined on Linux systems.


Modified: packages/trunk/slashem/debian/changelog
===================================================================
--- packages/trunk/slashem/debian/changelog	2014-05-12 07:54:18 UTC (rev 15085)
+++ packages/trunk/slashem/debian/changelog	2014-05-12 07:59:30 UTC (rev 15086)
@@ -4,6 +4,8 @@
   * Correct Vcs-* URLs to point to anonscm.debian.org
 
   [ Vincent Cheng ]
+  * Fix broken macro causing LINUX to not be defined on Linux systems.
+    (Closes: #747274)
   * Add native systemd support.
     - Factor out the recovery logic from the slashem-common init script into a
       new script /usr/lib/games/slashem/recover-all.

Modified: packages/trunk/slashem/debian/patches/slashem-debian.patch
===================================================================
--- packages/trunk/slashem/debian/patches/slashem-debian.patch	2014-05-12 07:54:18 UTC (rev 15085)
+++ packages/trunk/slashem/debian/patches/slashem-debian.patch	2014-05-12 07:59:30 UTC (rev 15086)
@@ -176,7 +176,7 @@
  			/* e.g. Suns sharing a playground through NFS */
  /* #define SUNOS4 */	/* SunOS 4.x */
 -/* #define LINUX */	/* Another Unix clone */
-+#if defined(LINUX)
++#if defined(__linux__)
 +#define LINUX   	/* Another Unix clone */
 +#endif
  /* #define CYGWIN32 */	/* Unix on Win32 -- use with case sensitive defines */




More information about the Pkg-games-commits mailing list