Add configure script
This commit is contained in:
parent
15d09d2c01
commit
a319de23f7
1 changed files with 14 additions and 0 deletions
14
configure
vendored
Executable file
14
configure
vendored
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
OS="$(uname -s)"
|
||||||
|
|
||||||
|
case "$OS" in
|
||||||
|
Linux)
|
||||||
|
EXTRAFLAGS=-lbsd
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
EXTRAFLAGS=""
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
echo "EXTRAFLAGS=${EXTRAFLAGS}" > config.mk
|
Loading…
Add table
Add a link
Reference in a new issue