You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/08/25 11:06:24 UTC

svn commit: r807529 - in /commons/sandbox/runtime/trunk/src/main/native: configure include/acr.h

Author: mturk
Date: Tue Aug 25 09:06:24 2009
New Revision: 807529

URL: http://svn.apache.org/viewvc?rev=807529&view=rev
Log:
Rename ccconfig to acr_config

Modified:
    commons/sandbox/runtime/trunk/src/main/native/configure
    commons/sandbox/runtime/trunk/src/main/native/include/acr.h

Modified: commons/sandbox/runtime/trunk/src/main/native/configure
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/configure?rev=807529&r1=807528&r2=807529&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/configure (original)
+++ commons/sandbox/runtime/trunk/src/main/native/configure Tue Aug 25 09:06:24 2009
@@ -821,12 +821,12 @@
 
 # Generate configuration header file
 #
-cat > $topdir/include/ccconfig.h << EOF
+cat > $topdir/include/acr_config.h << EOF
 /*
  * AUTOMATICALLY GENERATED BY CONFIGURE SCRIPT -- DO NOT EDIT
  */
-#ifndef _CCCONFIG_H
-#define _CCCONFIG_H
+#ifndef _ACR_CONFIG_H
+#define _ACR_CONFIG_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -846,6 +846,7 @@
 #define HAVE_STRING_H         `have_include string`
 #define HAVE_STRINGS_H        `have_include strings`
 #define HAVE_INTTYPES_H       `have_include inttypes`
+#define HAVE_WTYPES_H         `have_include wtypes`
 #define HAVE_DLFCN_H          `have_include dlfcn`
 #define HAVE_LINK_H           `have_include link`
 #define HAVE_FCNTL_H          `have_include fcntl`
@@ -890,12 +891,12 @@
 
 EOF
 
-cat >> $topdir/include/ccconfig.h << EOF
+cat >> $topdir/include/acr_config.h << EOF
 
 #ifdef __cplusplus
 }
 #endif
-#endif /* _CCCONFIG_H */
+#endif /* _ACR_CONFIG_H */
 EOF
 
 if [ ".$host" = .windows ]; then

Modified: commons/sandbox/runtime/trunk/src/main/native/include/acr.h
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/include/acr.h?rev=807529&r1=807528&r2=807529&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/include/acr.h (original)
+++ commons/sandbox/runtime/trunk/src/main/native/include/acr.h Tue Aug 25 09:06:24 2009
@@ -17,7 +17,7 @@
 #ifndef _ACR_H
 #define _ACR_H
 
-#include "ccconfig.h"
+#include "acr_config.h"
 #if HAVE_WINDOWS_H
 #if !defined(WIN32_LEAN_AND_MEAN)
 #define WIN32_LEAN_AND_MEAN
@@ -100,6 +100,9 @@
 #if HAVE_INTTYPES_H
 #include <inttypes.h>
 #endif
+#if HAVE_WTYPES_H
+#include <wtypes.h>
+#endif
 #if HAVE_DLFCN_H
 #include <dlfcn.h>
 #endif