mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +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>
|
||||
|
||||
* check/Makefile.am:
|
||||
|
|
|
@ -57,7 +57,11 @@ endif
|
|||
if GST_DISABLE_NET
|
||||
SUBDIRS_NET =
|
||||
else
|
||||
if HAVE_SYS_SOCKET_H
|
||||
SUBDIRS_NET = net
|
||||
else
|
||||
SUBDIRS_NET =
|
||||
endif
|
||||
endif
|
||||
|
||||
SUBDIRS = \
|
||||
|
|
Loading…
Reference in a new issue