paragui-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[paragui-cvs] CVS: paragui/include paraconfig_macos.h,NONE,1.1.2.1 parac


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui/include paraconfig_macos.h,NONE,1.1.2.1 paraconfig.h,1.3.6.3,1.3.6.4 paraconfig_win32.h,1.1.1.1.6.1,1.1.1.1.6.2
Date: Fri, 31 May 2002 08:57:18 -0400

Update of /cvsroot/paragui/paragui/include
In directory subversions:/tmp/cvs-serv23847/include

Modified Files:
      Tag: devel-1-0
        paraconfig.h paraconfig_win32.h 
Added Files:
      Tag: devel-1-0
        paraconfig_macos.h 
Log Message:
MacOS changes



--- NEW FILE ---
#ifndef MACOS_CONFIG_INCLUDED
#define MACOS_CONFIG_INCLUDED

/* Define if you the the SDL_image library (-lSDL_Image) */
#define HAVE_SDLIMAGE 1

/* Define the default path to the theme files */
#define PARAGUI_THEMEDIR ":data:"

/* Define if RTTI is enabled in your compiler (for dynamic_cast and typeid) */
#define RTTI_ENABLED 1

/* Define if the exception handling is enabled in your compiler */
#undef EXCEPTIONS_ENABLED 

/* Define if mpatrol memory profiler support is enabled */
/* #undef MPATROL_ENABLED */

/* Define if you have the strdup function.  */
/* #undef HAVE_STRDUP */

/* Define if you have the strtok function.  */
#define HAVE_STRTOK 1

/* Define if you have the vsnprintf function.  */
#define HAVE_VSNPRINTF 1

/* Define if you have the <dlfcn.h> header file.  */
#define HAVE_DLFCN_H 1

/* Define if you have the <ext/hash_map> header file.  */
/* #undef HAVE_EXT_HASH_MAP */

/* Define if you have the <hash_map> header file.  */
/*#define HAVE_HASH_MAP 1*/

/* Define if you have the jpeg library (-ljpeg).  */
#define HAVE_LIBJPEG 1

/* Define if you have the png library (-lpng).  */
#define HAVE_LIBPNG 1

/* Define if you have the tiff library (-ltiff).  */
#define HAVE_LIBTIFF 1

/* Name of package */
#define PACKAGE "paragui"

/* Version number of package */
#define VERSION "1.0.2"

#endif 

Index: paraconfig.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/paraconfig.h,v
retrieving revision 1.3.6.3
retrieving revision 1.3.6.4
diff -C2 -r1.3.6.3 -r1.3.6.4
*** paraconfig.h        31 May 2002 07:43:25 -0000      1.3.6.3
--- paraconfig.h        31 May 2002 12:57:16 -0000      1.3.6.4
***************
*** 35,40 ****
  #define PG_VERSIONNUM(X, Y, Z) ((X)*10000 + (Y)*100 + (Z))
  
! #if (defined(WIN32) || defined(__WIN32__)) && (defined(_MSC_VER) || 
defined(__BCPLUSPLUS__))
  #include "paraconfig_win32.h"
  #else // GNU
  #include "paraconfig_gnu.h"
--- 35,69 ----
  #define PG_VERSIONNUM(X, Y, Z) ((X)*10000 + (Y)*100 + (Z))
  
! //stuff needed for MWERKS Codewarrior (7+)
! //this is before the OS specific stuff as strdup_macos.h needs some of these 
defined 
! #ifdef __MWERKS__
! using std::abs;
! using std::malloc;
! using std::free;
! using std::memset;
! using std::fabs;
! using std::sin;
! using std::cos;
! using std::ceil;
! using std::memcpy;
! using std::calloc;
! using std::floor;
! using std::exit;
! using std::atexit;
! using std::getenv;
! using std::sqrt;
! 
! using std::strcpy;
! using std::strcmp;
! using std::strchr;
! using std::strlen;
! using std::strcat;
! using std::strncpy;
! #endif
! 
! #if (defined(WIN32) || defined(__WIN32__)) && (defined(_MSC_VER) || 
defined(__BCPLUSPLUS__)) || defined(__MWERKS__))
  #include "paraconfig_win32.h"
+ #elif defined(__MACOS__) 
+ #include "paraconfig_macos.h"
  #else // GNU
  #include "paraconfig_gnu.h"

Index: paraconfig_win32.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/paraconfig_win32.h,v
retrieving revision 1.1.1.1.6.1
retrieving revision 1.1.1.1.6.2
diff -C2 -r1.1.1.1.6.1 -r1.1.1.1.6.2
*** paraconfig_win32.h  2 May 2002 08:45:36 -0000       1.1.1.1.6.1
--- paraconfig_win32.h  31 May 2002 12:57:16 -0000      1.1.1.1.6.2
***************
*** 46,50 ****
  
  /* Version number of package */
! #define VERSION "1.0.0"
  
  #endif // WIN32_CONFIG_INCLUDED
--- 46,50 ----
  
  /* Version number of package */
! #define VERSION "1.0.2"
  
  #endif // WIN32_CONFIG_INCLUDED




reply via email to

[Prev in Thread] Current Thread [Next in Thread]