|
From: <csi...@li...> - 2008-06-02 14:54:51
|
Revision: 1525
http://csipc2.svn.sourceforge.net/csipc2/?rev=1525&view=rev
Author: warcamel
Date: 2008-06-02 07:54:45 -0700 (Mon, 02 Jun 2008)
Log Message:
-----------
- corrected typo
- removed #ifdef WIN_32 cause won't need it anymore
Modified Paths:
--------------
trunk/configure.in
trunk/src/shared/csi_struct.h
Modified: trunk/configure.in
===================================================================
--- trunk/configure.in 2008-06-02 12:15:40 UTC (rev 1524)
+++ trunk/configure.in 2008-06-02 14:54:45 UTC (rev 1525)
@@ -76,7 +76,7 @@
[enable_sse2=no])
if test "x$enable_sse2" = "xyes"; then
SSE2_CFLAGS="-msse2"
- AC_DEFINE(HAVE_SSE2, 1, [Enable support for SSE])
+ AC_DEFINE(HAVE_SSE2, 1, [Enable support for SSE2])
fi
AM_CONDITIONAL(HAVE_SSE2, test "x$enable_sse2" = "xyes")
@@ -88,7 +88,7 @@
[enable_sse3=no])
if test "x$enable_sse3" = "xyes"; then
SSE3_CFLAGS="-msse3"
- AC_DEFINE(HAVE_SSE3, 1, [Enable support for SSE])
+ AC_DEFINE(HAVE_SSE3, 1, [Enable support for SSE3])
fi
AM_CONDITIONAL(HAVE_SSE3, test "x$enable_sse2" = "xyes")
Modified: trunk/src/shared/csi_struct.h
===================================================================
--- trunk/src/shared/csi_struct.h 2008-06-02 12:15:40 UTC (rev 1524)
+++ trunk/src/shared/csi_struct.h 2008-06-02 14:54:45 UTC (rev 1525)
@@ -22,21 +22,16 @@
* @file
* @brief
* This file contains common structures used by several parts of the
- * CSI:PC2 project.
+ * CSI PC2 Project.
*
* @author Christoph Konersmann <chr...@cs...>
* @author Dominic Eschweiler <Dom...@cs...>
* @author Elmar Weber <uni...@el...>
*/
-#ifdef WIN32
-#include "..\..\ext\stdint.h"
-#else
#include <stdint.h>
-#endif
-
#include <stdio.h>
#include "csi_config.h"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|