From: Edward Hervey Date: Wed, 16 Jan 2008 16:09:39 +0000 (+0000) Subject: Fix symbol generation for win32. X-Git-Tag: 1.19.3~485^2~624 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd512c4f6812b93603fc5959f4f2013a441b33c2;p=platform%2Fupstream%2Fgstreamer.git Fix symbol generation for win32. Original commit message from CVS: Reviewed by : Edward Hervey * configure.ac: * win32/common/config.h.in: Fix symbol generation for win32. Fixes #509766 --- diff --git a/ChangeLog b/ChangeLog index d739914..7fdf78e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-01-16 Tim-Philipp Müller + + Reviewed by : Edward Hervey + * configure.ac: + * win32/common/config.h.in: + Fix symbol generation for win32. + Fixes #509766 + 2008-01-15 Jan Schmidt * gst/pbutils.override: diff --git a/configure.ac b/configure.ac index 1a20bc0..33f2a66 100644 --- a/configure.ac +++ b/configure.ac @@ -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") diff --git a/win32/common/config.h.in b/win32/common/config.h.in index 86be08b..6407204 100644 --- a/win32/common/config.h.in +++ b/win32/common/config.h.in @@ -12,9 +12,15 @@ /* Define to 1 if you have the 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 header file. */ #undef HAVE_STDINT_H @@ -40,40 +46,43 @@ #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@"