~ubuntu-branches/ubuntu/maverick/wildmidi/maverick

« back to all changes in this revision

Viewing changes to include/config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-05-11 06:31:11 UTC
  • Revision ID: james.westby@ubuntu.com-20100511063111-2a4vv5u5kg06xcz7
Tags: 0.2.2-3
* debian/libwildmidi0.symbols,
  debian/patches/08_export-symbols-regex.patch,
  debian/patches/99_autoreconf.patch:
  + Add export symbols regex to only export symbols that should be exported.
* debian/patches/07_invalid-free.patch:
  + Patch by Benjamin Otte to fix an invalid free.
    https://bugzilla.gnome.org/show_bug.cgi?id=618247
* debian/source/format,
  debian/rules:
  + Switch to source format 3.0 (quilt).
* debian/rules:
  + Generate correct shlibs file and fail the build if the symbols file
    is wrong.
* debian/control:
  + Update Standards-Version to 3.8.4.
  + Line-wrap control fields.
  + Add ${misc:Depends} to the -dev package.
  + Make shared library package dependency of the -dev package
    more strict to fix a lintian warning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* include/config.h.in.  Generated from configure.ac by autoheader.  */
2
2
 
 
3
/* Define if building universal (internal helper macro) */
 
4
#undef AC_APPLE_UNIVERSAL_BUILD
 
5
 
3
6
/* Define this if using Alsa 1.0.1 or higher */
4
7
#undef ALSA_NEW
5
8
 
96
99
# define __builtin_expect(x,c) x
97
100
#endif
98
101
 
 
102
/* Define to the sub-directory in which libtool stores uninstalled libraries.
 
103
   */
 
104
#undef LT_OBJDIR
 
105
 
99
106
/* Name of package */
100
107
#undef PACKAGE
101
108
 
111
118
/* Define to the one symbol short name of this package. */
112
119
#undef PACKAGE_TARNAME
113
120
 
 
121
/* Define to the home page for this package. */
 
122
#undef PACKAGE_URL
 
123
 
114
124
/* Define to the version of this package. */
115
125
#undef PACKAGE_VERSION
116
126
 
132
142
/* current program version */
133
143
#undef WILDMIDI_VERSION
134
144
 
135
 
/* Define to 1 if your processor stores words with the most significant byte
136
 
   first (like Motorola and SPARC, unlike Intel and VAX). */
137
 
#undef WORDS_BIGENDIAN
 
145
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
 
146
   significant byte first (like Motorola and SPARC, unlike Intel). */
 
147
#if defined AC_APPLE_UNIVERSAL_BUILD
 
148
# if defined __BIG_ENDIAN__
 
149
#  define WORDS_BIGENDIAN 1
 
150
# endif
 
151
#else
 
152
# ifndef WORDS_BIGENDIAN
 
153
#  undef WORDS_BIGENDIAN
 
154
# endif
 
155
#endif