[MPlayer-cvslog] r28399 - in trunk: cpudetect.c get_path.c

diego subversion at mplayerhq.hu
Sat Jan 31 00:29:39 CET 2009


Author: diego
Date: Sat Jan 31 00:29:39 2009
New Revision: 28399

Log:
Use OS preprocessor checks with '#if defined()' consistently.
Avoids undefined preprocessor directives warnings.

Modified:
   trunk/cpudetect.c
   trunk/get_path.c

Modified: trunk/cpudetect.c
==============================================================================
--- trunk/cpudetect.c	Sat Jan 31 00:22:29 2009	(r28398)
+++ trunk/cpudetect.c	Sat Jan 31 00:29:39 2009	(r28399)
@@ -18,27 +18,17 @@ CpuCaps gCpuCaps;
 #include <sys/param.h>
 #include <sys/sysctl.h>
 #include <machine/cpu.h>
-#endif
-
-#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) || defined(__APPLE__)
+#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) || defined(__APPLE__)
 #include <sys/types.h>
 #include <sys/sysctl.h>
-#endif
-
-#ifdef __linux__
+#elif defined(__linux__)
 #include <signal.h>
-#endif
-
-#if defined(__MINGW32__) || defined(__CYGWIN__)
+#elif defined(__MINGW32__) || defined(__CYGWIN__)
 #include <windows.h>
-#endif
-
-#ifdef __OS2__
+#elif defined(__OS2__)
 #define INCL_DOS
 #include <os2.h>
-#endif
-
-#ifdef __AMIGAOS4__
+#elif defined(__AMIGAOS4__)
 #include <proto/exec.h>
 #endif
 
@@ -475,7 +465,7 @@ static void check_os_katmai_support( voi
 
 #ifdef __APPLE__
 #include <sys/sysctl.h>
-#elif __AMIGAOS4__
+#elif defined(__AMIGAOS4__)
 /* nothing */
 #else
 #include <signal.h>
@@ -529,7 +519,7 @@ void GetCpuCaps( CpuCaps *caps)
                         if (has_vu != 0)
                                 caps->hasAltiVec = 1;
         }
-#elif __AMIGAOS4__
+#elif defined(__AMIGAOS4__)
         ULONG result = 0;
 
         GetCPUInfoTags(GCIT_VectorUnit, &result, TAG_DONE);

Modified: trunk/get_path.c
==============================================================================
--- trunk/get_path.c	Sat Jan 31 00:22:29 2009	(r28398)
+++ trunk/get_path.c	Sat Jan 31 00:29:39 2009	(r28399)
@@ -18,12 +18,12 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <unistd.h>
-#elif __MINGW32__
+#elif defined(__MINGW32__)
 #include <windows.h>
-#elif __CYGWIN__
+#elif defined(__CYGWIN__)
 #include <windows.h>
 #include <sys/cygwin.h>
-#elif __OS2__
+#elif defined(__OS2__)
 #define INCL_DOS
 #include <os2.h>
 #endif



More information about the MPlayer-cvslog mailing list