mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 00:45:56 +00:00
gst/gst.c: set #include <sys/wait.h> in a #ifdef #ifdef HAVE_FORK
Original commit message from CVS: * gst/gst.c: set #include <sys/wait.h> in a #ifdef #ifdef HAVE_FORK * win32/common/libgstbase.def: export gst_collect_pads_set_flushing * win32/common/libgstreamer.def: export gst_pad_set_acceptcaps_function, gst_structure_empty_new, gst_value_fraction_multiply * win32/vs6/gst_inspect.dsp: add a link to intl.lib
This commit is contained in:
parent
cbc70ba654
commit
c82c4f93f0
5 changed files with 20 additions and 2 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
2006-05-30 Sebastien Moutte <sebastien@moutte.net>
|
||||
|
||||
* gst/gst.c:
|
||||
set #include <sys/wait.h> in a #ifdef #ifdef HAVE_FORK
|
||||
* win32/common/libgstbase.def:
|
||||
export gst_collect_pads_set_flushing
|
||||
* win32/common/libgstreamer.def:
|
||||
export gst_pad_set_acceptcaps_function, gst_structure_empty_new,
|
||||
gst_value_fraction_multiply
|
||||
* win32/vs6/gst_inspect.dsp:
|
||||
add a link to intl.lib
|
||||
|
||||
2006-05-30 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad),
|
||||
|
|
|
@ -105,7 +105,9 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#ifdef HAVE_FORK
|
||||
#include <sys/wait.h>
|
||||
#endif //HAVE_FORK
|
||||
#include <unistd.h>
|
||||
|
||||
#include "gst-i18n-lib.h"
|
||||
|
|
|
@ -39,6 +39,7 @@ EXPORTS
|
|||
gst_collect_pads_pop
|
||||
gst_collect_pads_read
|
||||
gst_collect_pads_remove_pad
|
||||
gst_collect_pads_set_flushing
|
||||
gst_collect_pads_set_function
|
||||
gst_collect_pads_start
|
||||
gst_collect_pads_stop
|
||||
|
|
|
@ -437,6 +437,7 @@ EXPORTS
|
|||
gst_pad_remove_data_probe
|
||||
gst_pad_remove_event_probe
|
||||
gst_pad_send_event
|
||||
gst_pad_set_acceptcaps_function
|
||||
gst_pad_set_activate_function
|
||||
gst_pad_set_activatepull_function
|
||||
gst_pad_set_activatepush_function
|
||||
|
@ -586,6 +587,7 @@ EXPORTS
|
|||
gst_stream_error_get_type
|
||||
gst_stream_error_quark
|
||||
gst_structure_copy
|
||||
gst_structure_empty_new
|
||||
gst_structure_fixate_field_boolean
|
||||
gst_structure_fixate_field_nearest_double
|
||||
gst_structure_fixate_field_nearest_fraction
|
||||
|
@ -692,6 +694,7 @@ EXPORTS
|
|||
gst_value_array_get_type
|
||||
gst_value_array_get_value
|
||||
gst_value_compare
|
||||
gst_value_fraction_multiply
|
||||
gst_value_get_caps
|
||||
gst_value_get_double_range_max
|
||||
gst_value_get_double_range_min
|
||||
|
|
|
@ -51,7 +51,7 @@ BSC32=bscmake.exe
|
|||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib /nologo /subsystem:console /machine:I386 /out:"Release/gst-inspect-0.10.exe"
|
||||
# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib intl.lib /nologo /subsystem:console /machine:I386 /out:"Release/gst-inspect-0.10.exe"
|
||||
# Begin Special Build Tool
|
||||
TargetPath=.\Release\gst-inspect-0.10.exe
|
||||
SOURCE="$(InputPath)"
|
||||
|
@ -81,7 +81,7 @@ BSC32=bscmake.exe
|
|||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib /nologo /subsystem:console /debug /machine:I386 /out:"Debug/gst-inspect-0.10.exe" /pdbtype:sept
|
||||
# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib intl.lib /nologo /subsystem:console /debug /machine:I386 /out:"Debug/gst-inspect-0.10.exe" /pdbtype:sept
|
||||
# Begin Special Build Tool
|
||||
TargetPath=.\Debug\gst-inspect-0.10.exe
|
||||
SOURCE="$(InputPath)"
|
||||
|
|
Loading…
Reference in a new issue