Fix symbol generation for win32.
authorEdward Hervey <bilboed@bilboed.com>
Wed, 16 Jan 2008 16:09:39 +0000 (16:09 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 16 Jan 2008 16:09:39 +0000 (16:09 +0000)
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

ChangeLog
configure.ac
win32/common/config.h.in

index d739914..7fdf78e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * gst/pbutils.override:
index 1a20bc0..33f2a66 100644 (file)
@@ -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_MICRO_VERSION, $PACKAGE_VERSION_MICRO, [PyGst micro 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
 AC_SUBST(ACLOCAL_AMFLAGS, "-I common/m4")
index 86be08b..6407204 100644 (file)
 /* Define to 1 if you have the <memory.h> header file. */
 #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 */
 #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. */
 #undef HAVE_STDINT_H
 
 #undef HAVE_VALGRIND
 
 /* 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 */
-#undef PACKAGE
+#define PACKAGE "@PACKAGE@"
 
 /* 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. */
-#undef PACKAGE_NAME
+#define PACKAGE_NAME "@PACKAGE_NAME@"
 
 /* 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. */
-#undef PACKAGE_TARNAME
+#define PACKAGE_TARNAME "@PACKAGE_TARNAME@"
 
 /* Define to the version of this package. */
-#undef PACKAGE_VERSION
+#define PACKAGE_VERSION "@PACKAGE_VERSION@"
 
 /* PyGst major version */
-#undef PYGST_MAJOR_VERSION
+#define PYGST_MAJOR_VERSION @PACKAGE_VERSION_MAJOR@
 
 /* PyGst micro version */
-#undef PYGST_MICRO_VERSION
+#define PYGST_MICRO_VERSION @PACKAGE_VERSION_MICRO@
 
 /* PyGst minor version */
-#undef PYGST_MINOR_VERSION
+#define PYGST_MINOR_VERSION @PACKAGE_VERSION_MINOR@
 
 /* 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. */
 #undef STDC_HEADERS
 
 /* Version number of package */
-#undef VERSION
+#define VERSION "@VERSION@"