mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
e240fcbcaa
Original commit message from CVS: * configure.ac: * libs/gst/Makefile.am: Build the net library if we have winsock2.
24 lines
371 B
Makefile
24 lines
371 B
Makefile
if HAVE_CHECK
|
|
SUBDIRS_CHECK = check
|
|
else
|
|
SUBDIRS_CHECK =
|
|
endif
|
|
|
|
if GST_DISABLE_NET
|
|
SUBDIRS_NET =
|
|
else
|
|
if HAVE_SYS_SOCKET_H
|
|
SUBDIRS_NET = net
|
|
else
|
|
if HAVE_WINSOCK2_H
|
|
SUBDIRS_NET = net
|
|
else
|
|
SUBDIRS_NET =
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
SUBDIRS_ALWAYS = base controller dataprotocol
|
|
|
|
SUBDIRS = $(SUBDIRS_ALWAYS) $(SUBDIRS_CHECK) $(SUBDIRS_NET)
|
|
DIST_SUBDIRS = $(SUBDIRS_ALWAYS) check net
|