mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
configure: Respect previously set paths in macosx preset
This commit is contained in:
parent
371260638d
commit
61d02f3599
1 changed files with 8 additions and 4 deletions
12
configure
vendored
12
configure
vendored
|
@ -259,10 +259,14 @@ if [ "$OSPRESET_SET" = "yes" ]; then
|
|||
CFLAGS="$CFLAGS -ggdb"
|
||||
fi
|
||||
if [ "$OSPRESET" = "macosx" ]; then
|
||||
LUA_INCDIR=/usr/local/include;
|
||||
LUA_INCDIR_SET=yes
|
||||
LUA_LIBDIR=/usr/local/lib
|
||||
LUA_LIBDIR_SET=yes
|
||||
if [ "$LUA_INCDIR_SET" != "yes" ]; then
|
||||
LUA_INCDIR=/usr/local/include;
|
||||
LUA_INCDIR_SET=yes
|
||||
fi
|
||||
if [ "$LUA_LIBDIR_SET" != "yes" ]; then
|
||||
LUA_LIBDIR=/usr/local/lib
|
||||
LUA_LIBDIR_SET=yes
|
||||
fi
|
||||
CFLAGS="$CFLAGS -mmacosx-version-min=10.3"
|
||||
LDFLAGS="-bundle -undefined dynamic_lookup"
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue