Fix symbol generation for win32.
Original commit message from CVS: Reviewed by : Edward Hervey <edward.hervey@collabora.co.uk> * configure.ac: * win32/common/config.h.in: Fix symbol generation for win32. Fixes #509766
This commit is contained in:
parent
9d3bfa8fdf
commit
bd512c4f68
@ -1,3 +1,11 @@
|
|||||||
|
2008-01-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
Reviewed by : Edward Hervey <edward.hervey@collabora.co.uk>
|
||||||
|
* configure.ac:
|
||||||
|
* win32/common/config.h.in:
|
||||||
|
Fix symbol generation for win32.
|
||||||
|
Fixes #509766
|
||||||
|
|
||||||
2008-01-15 Jan Schmidt <jan.schmidt@sun.com>
|
2008-01-15 Jan Schmidt <jan.schmidt@sun.com>
|
||||||
|
|
||||||
* gst/pbutils.override:
|
* gst/pbutils.override:
|
||||||
|
@ -31,6 +31,10 @@ AC_DEFINE_UNQUOTED(PYGST_MAJOR_VERSION, $PACKAGE_VERSION_MAJOR, [PyGst major ver
|
|||||||
AC_DEFINE_UNQUOTED(PYGST_MINOR_VERSION, $PACKAGE_VERSION_MINOR, [PyGst minor version])
|
AC_DEFINE_UNQUOTED(PYGST_MINOR_VERSION, $PACKAGE_VERSION_MINOR, [PyGst minor version])
|
||||||
AC_DEFINE_UNQUOTED(PYGST_MICRO_VERSION, $PACKAGE_VERSION_MICRO, [PyGst micro version])
|
AC_DEFINE_UNQUOTED(PYGST_MICRO_VERSION, $PACKAGE_VERSION_MICRO, [PyGst micro version])
|
||||||
AC_DEFINE_UNQUOTED(PYGST_NANO_VERSION, $PACKAGE_VERSION_NANO, [PyGst nano version])
|
AC_DEFINE_UNQUOTED(PYGST_NANO_VERSION, $PACKAGE_VERSION_NANO, [PyGst nano version])
|
||||||
|
AC_SUBST(PACKAGE_VERSION_MAJOR)
|
||||||
|
AC_SUBST(PACKAGE_VERSION_MINOR)
|
||||||
|
AC_SUBST(PACKAGE_VERSION_MICRO)
|
||||||
|
AC_SUBST(PACKAGE_VERSION_NANO)
|
||||||
|
|
||||||
dnl Add parameters for aclocal
|
dnl Add parameters for aclocal
|
||||||
AC_SUBST(ACLOCAL_AMFLAGS, "-I common/m4")
|
AC_SUBST(ACLOCAL_AMFLAGS, "-I common/m4")
|
||||||
|
@ -12,9 +12,15 @@
|
|||||||
/* Define to 1 if you have the <memory.h> header file. */
|
/* Define to 1 if you have the <memory.h> header file. */
|
||||||
#undef HAVE_MEMORY_H
|
#undef HAVE_MEMORY_H
|
||||||
|
|
||||||
|
/* We can use the plugins-install methods */
|
||||||
|
#define HAVE_PLUGINS_INSTALL 1
|
||||||
|
|
||||||
/* Defined if we have a 2.12 series pygobject */
|
/* Defined if we have a 2.12 series pygobject */
|
||||||
#undef HAVE_PYGOBJECT_2_12
|
#undef HAVE_PYGOBJECT_2_12
|
||||||
|
|
||||||
|
/* Defined if we have a 2.16 series pygobject */
|
||||||
|
#undef HAVE_PYGOBJECT_2_16
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
/* Define to 1 if you have the <stdint.h> header file. */
|
||||||
#undef HAVE_STDINT_H
|
#undef HAVE_STDINT_H
|
||||||
|
|
||||||
@ -40,40 +46,43 @@
|
|||||||
#undef HAVE_VALGRIND
|
#undef HAVE_VALGRIND
|
||||||
|
|
||||||
/* We can use the videoorientation interface */
|
/* We can use the videoorientation interface */
|
||||||
#undef HAVE_VIDEO_ORIENTATION_INTERFACE
|
#define HAVE_VIDEO_ORIENTATION_INTERFACE 1
|
||||||
|
|
||||||
|
/* Define to 1 if your C compiler doesn't accept -c and -o together. */
|
||||||
|
#undef NO_MINUS_C_MINUS_O
|
||||||
|
|
||||||
/* Name of package */
|
/* Name of package */
|
||||||
#undef PACKAGE
|
#define PACKAGE "@PACKAGE@"
|
||||||
|
|
||||||
/* Define to the address where bug reports for this package should be sent. */
|
/* Define to the address where bug reports for this package should be sent. */
|
||||||
#undef PACKAGE_BUGREPORT
|
#define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#undef PACKAGE_NAME
|
#define PACKAGE_NAME "@PACKAGE_NAME@"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#undef PACKAGE_STRING
|
#define PACKAGE_STRING "@PACKAGE_STRING@"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#undef PACKAGE_TARNAME
|
#define PACKAGE_TARNAME "@PACKAGE_TARNAME@"
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#undef PACKAGE_VERSION
|
#define PACKAGE_VERSION "@PACKAGE_VERSION@"
|
||||||
|
|
||||||
/* PyGst major version */
|
/* PyGst major version */
|
||||||
#undef PYGST_MAJOR_VERSION
|
#define PYGST_MAJOR_VERSION @PACKAGE_VERSION_MAJOR@
|
||||||
|
|
||||||
/* PyGst micro version */
|
/* PyGst micro version */
|
||||||
#undef PYGST_MICRO_VERSION
|
#define PYGST_MICRO_VERSION @PACKAGE_VERSION_MICRO@
|
||||||
|
|
||||||
/* PyGst minor version */
|
/* PyGst minor version */
|
||||||
#undef PYGST_MINOR_VERSION
|
#define PYGST_MINOR_VERSION @PACKAGE_VERSION_MINOR@
|
||||||
|
|
||||||
/* PyGst nano version */
|
/* PyGst nano version */
|
||||||
#undef PYGST_NANO_VERSION
|
#define PYGST_NANO_VERSION @PACKAGE_VERSION_NANO@
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
/* Define to 1 if you have the ANSI C header files. */
|
||||||
#undef STDC_HEADERS
|
#undef STDC_HEADERS
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#undef VERSION
|
#define VERSION "@VERSION@"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user