From dc0fa2ef1d851112d83a4641b8d65e40506398ff Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 26 Apr 2015 23:23:33 +0200 Subject: configure: Mention openbsd preset in --help --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 84f4b9ef..bf2300f8 100755 --- a/configure +++ b/configure @@ -32,7 +32,7 @@ Configure Prosody prior to building. --help This help. --ostype=OS Use one of the OS presets. - May be one of: debian, macosx, linux, freebsd + May be one of: debian, macosx, linux, freebsd, openbsd --prefix=DIR Prefix where Prosody should be installed. Default is $PREFIX --sysconfdir=DIR Location where the config file should be installed. -- cgit v1.2.3 From 2dcf1e16965cf7fc6cf2c097dae4f20f3d864792 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 26 Apr 2015 23:25:47 +0200 Subject: configure: Set default compiler and linker to cc and ld on *bsd (thanks Tobias) --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index bf2300f8..37f45f9b 100755 --- a/configure +++ b/configure @@ -131,6 +131,8 @@ do LUA_SUFFIX_SET=yes LUA_DIR=/usr/local LUA_DIR_SET=yes + CC=cc + LD=ld fi if [ "$OSTYPE" = "openbsd" ]; then LUA_INCDIR="/usr/local/include"; -- cgit v1.2.3