mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 04:45:36 +00:00
win32/: win32 build fixes
Original commit message from CVS: patch by: Sebastien Moutte * win32/MANIFEST: * win32/common/config.h.in: * win32/vs6/libgstcontroller.dsp: win32 build fixes
This commit is contained in:
parent
0aa5cea288
commit
dcc09909b9
4 changed files with 24 additions and 2 deletions
|
@ -1,3 +1,12 @@
|
|||
2005-12-05 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
patch by: Sebastien Moutte
|
||||
|
||||
* win32/MANIFEST:
|
||||
* win32/common/config.h.in:
|
||||
* win32/vs6/libgstcontroller.dsp:
|
||||
win32 build fixes
|
||||
|
||||
2005-12-05 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/gstcaps.c: (gst_caps_is_equal):
|
||||
|
|
|
@ -5,6 +5,7 @@ win32/common/config.h
|
|||
win32/common/dirent.h
|
||||
win32/common/gtchar.h
|
||||
win32/common/libgstbase.def
|
||||
win32/common/libgstcontroller.def
|
||||
win32/common/libgstreamer.def
|
||||
win32/common/gstenumtypes.c
|
||||
win32/common/gstconfig.h
|
||||
|
|
|
@ -172,7 +172,11 @@
|
|||
#define HAVE_WIN32 1
|
||||
|
||||
/* library dir */
|
||||
#define LIBDIR PREFIX "\\lib"
|
||||
#ifdef _DEBUG
|
||||
# define LIBDIR PREFIX "\\debug\\lib"
|
||||
#else
|
||||
# define LIBDIR PREFIX "\\lib"
|
||||
#endif
|
||||
|
||||
/* gettext locale dir */
|
||||
#define LOCALEDIR PREFIX "\\share\\locale"
|
||||
|
@ -196,7 +200,11 @@
|
|||
#undef PACKAGE_VERSION
|
||||
|
||||
/* Define the plugin directory */
|
||||
#define PLUGINDIR PREFIX "\\lib\\gstreamer-0.10"
|
||||
#ifdef _DEBUG
|
||||
# define PLUGINDIR PREFIX "\\debug\\lib\\gstreamer-0.10"
|
||||
#else
|
||||
# define PLUGINDIR PREFIX "\\lib\\gstreamer-0.10"
|
||||
#endif
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
|
|
@ -108,6 +108,10 @@ SOURCE=..\..\libs\gst\controller\gstinterpolation.c
|
|||
|
||||
SOURCE=..\..\libs\gst\controller\lib.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\common\libgstcontroller.def
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
|
|
Loading…
Reference in a new issue