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:
Thomas Vander Stichele 2005-11-28 08:20:48 +00:00
parent 84279849a8
commit 9e3259dd14
2 changed files with 9 additions and 0 deletions

View file

@ -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:

View file

@ -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 = \