~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_drizzle_build.m4

  • Committer: Monty Taylor
  • Date: 2009-12-14 22:00:27 UTC
  • mto: (1241.9.10 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091214220027-kpmfbl452nctzc0g
pandora-build v0.85 - Fixed C++ standard setting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
 
75
75
  PANDORA_CXX_DEMANGLE
76
76
 
 
77
  AH_TOP([
 
78
#ifndef __CONFIG_H__
 
79
#define __CONFIG_H__
 
80
 
 
81
#if defined(i386) && !defined(__i386__)
 
82
#define __i386__
 
83
#endif
 
84
 
 
85
#if defined(__sun) && defined(_FILE_OFFSET_BITS)
 
86
#undef _FILE_OFFSET_BITS
 
87
#endif
 
88
 
 
89
  ])
 
90
  AH_BOTTOM([
 
91
#if defined(__cplusplus)
 
92
# include CSTDINT_H
 
93
# include CINTTYPES_H
 
94
#else
 
95
# include <stdint.h>
 
96
# include <inttypes.h>
 
97
#endif
 
98
 
 
99
#if !defined(HAVE_ULONG) && !defined(__USE_MISC)
 
100
typedef unsigned long int ulong;
 
101
#endif
 
102
 
 
103
#endif /* __CONFIG_H__ */
 
104
  ])
77
105
])