mirror of
https://github.com/albfan/miraclecast.git
synced 2025-02-12 19:11:58 +00:00
This initial commit contains the main "miracled" daemon that does link-management and peer-discovery/control. The "miraclectl" tool can be used to control this daemon during runtime. Note that this implementation is still missing a lot of stuff. All it currently does is provide link-management and basic peer-discovery. Following commits will hook everything else up. The actual Miracast/Wifi-Display related runtime control is not being worked on, yet. Feel free to use the proof-of-concept from the OpenWFD repository. The MiracleCast implementation will not get any such functionality unless the basic link-management is properly working. Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
17 lines
212 B
Bash
Executable file
17 lines
212 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
origdir=`pwd`
|
|
cd $srcdir
|
|
|
|
mkdir -p m4
|
|
autoreconf -is --force
|
|
|
|
cd $origdir
|
|
|
|
if test -z "$NOCONFIGURE" ; then
|
|
exec $srcdir/configure "$@"
|
|
fi
|