mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
gst/Makefile.am: don't try and build net if we don't even have <sys/socket.h>
Original commit message from CVS: * gst/Makefile.am: don't try and build net if we don't even have <sys/socket.h>
This commit is contained in:
parent
84279849a8
commit
9e3259dd14
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-11-28 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* gst/Makefile.am:
|
||||||
|
don't try and build net if we don't even have <sys/socket.h>
|
||||||
|
|
||||||
2005-11-27 Jan Schmidt <thaytan@mad.scientist.com>
|
2005-11-27 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
* check/Makefile.am:
|
* check/Makefile.am:
|
||||||
|
|
|
@ -57,7 +57,11 @@ endif
|
||||||
if GST_DISABLE_NET
|
if GST_DISABLE_NET
|
||||||
SUBDIRS_NET =
|
SUBDIRS_NET =
|
||||||
else
|
else
|
||||||
|
if HAVE_SYS_SOCKET_H
|
||||||
SUBDIRS_NET = net
|
SUBDIRS_NET = net
|
||||||
|
else
|
||||||
|
SUBDIRS_NET =
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
|
|
Loading…
Reference in a new issue