add some sample configureations for a few os's
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Sat, 25 Jan 2020 15:47:22 +0000 (15:47 +0000)
committerJongmin Lee <jm105.lee@samsung.com>
Mon, 27 Jan 2020 21:06:49 +0000 (06:06 +0900)
the idea is - if the configure fails .. provide the dep it's asking
for. that simple. the rest of the build is the same (ninja -C build
etc.)

confs/freebsd.sh [new file with mode: 0755]
confs/linux-elogind.sh [new file with mode: 0755]
confs/linux-nowayland-nosystemd.sh [new file with mode: 0755]
confs/linux-nowayland.sh [new file with mode: 0755]
confs/linux.sh [new file with mode: 0755]

diff --git a/confs/freebsd.sh b/confs/freebsd.sh
new file mode 100755 (executable)
index 0000000..1a88fc7
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh -e
+meson -Dsystemd=false -Dv4l2=false -Deeze=false -Devas-loaders-disabler=json \
+ $@ . build
diff --git a/confs/linux-elogind.sh b/confs/linux-elogind.sh
new file mode 100755 (executable)
index 0000000..077ea58
--- /dev/null
@@ -0,0 +1,4 @@
+#!/bin/sh -e
+meson -Dfb=true -Ddrm=true -Dwl=true -Devas-loaders-disabler=json \
+ -Dsystemd=false -Delogind=true \
+ $@ . build
diff --git a/confs/linux-nowayland-nosystemd.sh b/confs/linux-nowayland-nosystemd.sh
new file mode 100755 (executable)
index 0000000..ea9fde6
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh -e
+meson -Dfb=true -Dsystemd=false -Devas-loaders-disabler=json \
+ $@ . build
diff --git a/confs/linux-nowayland.sh b/confs/linux-nowayland.sh
new file mode 100755 (executable)
index 0000000..4219e98
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh -e
+meson -Dfb=true -Devas-loaders-disabler=json \
+ $@ . build
diff --git a/confs/linux.sh b/confs/linux.sh
new file mode 100755 (executable)
index 0000000..223cb0d
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh -e
+meson -Dfb=true -Ddrm=true -Dwl=true -Devas-loaders-disabler=json \
+ $@ . build