You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by da...@apache.org on 2003/09/18 13:18:49 UTC

cvs commit: xml-axis/c/src/common GDefine.h

damitha     2003/09/18 04:18:49

  Modified:    c/src/common GDefine.h
  Log:
  log: added
  #define CONFFILENAME = ...
  
  Revision  Changes    Path
  1.10      +4 -2      xml-axis/c/src/common/GDefine.h
  
  Index: GDefine.h
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/common/GDefine.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- GDefine.h	12 Sep 2003 09:26:18 -0000	1.9
  +++ GDefine.h	18 Sep 2003 11:18:49 -0000	1.10
  @@ -80,9 +80,11 @@
   #define AxisXMLString basic_string<AxisXMLCh>
   
   #ifdef WIN32
  -    #define AxisSprintf(X, Y, Z, W) sprintf(X, Z, W)        
  +    #define AxisSprintf(X, Y, Z, W) sprintf(X, Z, W)
  +    #define CONFFILENAME "c:\\program files\axiscpp.conf"
   #else //linux
  -    #define AxisSprintf(X, Y, Z, W) sprintf(X, Z, W) 
  +    #define AxisSprintf(X, Y, Z, W) sprintf(X, Z, W)
  +    #define CONFFILENAME "/etc/axiscpp.conf"
   #endif
   
   extern void Ax_Sleep(int);