Show
Ignore:
Timestamp:
08/18/08 22:17:02 (5 months ago)
Author:
hobu
Message:

Fix up #23

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/include/liblas/capi/las_config.h

    r825 r839  
    8989#endif 
    9090 
    91 /* FIXME -  Ticket #23 */ 
    92 #if defined(_MSC_VER) || defined(__MINGW32__) 
    93 #define PACKAGE_VERSION "1.0.0b1" 
     91#ifndef LIBLAS_VERSION_MAJOR 
     92#  define LIBLAS_VERSION_MAJOR    1 
     93#  define LIBLAS_VERSION_MINOR    0 
     94#  define LIBLAS_VERSION_REV      0 
     95#  define LIBLAS_VERSION_BUILD    0 
    9496#endif 
     97 
     98#ifndef LIBLAS_VERSION_NUM 
     99#  define LIBLAS_VERSION_NUM      (LIBLAS_VERSION_MAJOR*1000+LIBLAS_VERSION_MINOR*100+LIBLAS_VERSION_REV*10+LIBLAS_VERSION_BUILD) 
     100#endif 
     101 
     102#ifndef LIBLAS_RELEASE_DATE 
     103#  define LIBLAS_RELEASE_DATE     20080000 
     104#endif 
     105 
     106#ifndef LIBLAS_RELEASE_NAME 
     107#  define LIBLAS_RELEASE_NAME     "1.0.0b1" 
     108#endif 
     109 
    95110 
    96111#endif /* LAS_CONFIG_H_INCLUDED */