mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 01:14:53 +01:00
configure: Add support for FreeBSD.
This makes FreeBSD a recognized platform. Follow up patches make it work properly.
This commit is contained in:
parent
1ffb382961
commit
df6f3cdf9d
1 changed files with 5 additions and 1 deletions
6
configure
vendored
6
configure
vendored
|
@ -374,6 +374,10 @@ elif [ $uname = "SunOS" ] ; then
|
|||
printf "Solaris.\n"
|
||||
platform=SOLARIS
|
||||
linker_resolves_library_dependencies=0
|
||||
elif [ $uname = "FreeBSD" ] ; then
|
||||
printf "FreeBSD.\n"
|
||||
platform=FREEBSD
|
||||
linker_resolves_library_dependencies=0
|
||||
elif [ $uname = "Linux" ] || [ $uname = "GNU" ] ; then
|
||||
printf "$uname\n"
|
||||
platform="$uname"
|
||||
|
@ -663,7 +667,7 @@ HAVE_GETLINE = ${have_getline}
|
|||
# build its own version)
|
||||
HAVE_STRCASESTR = ${have_strcasestr}
|
||||
|
||||
# Supported platforms (so far) are: LINUX, MACOSX, SOLARIS
|
||||
# Supported platforms (so far) are: LINUX, MACOSX, SOLARIS, FREEBSD
|
||||
PLATFORM = ${platform}
|
||||
|
||||
# Whether the linker will automatically resolve the dependency of one
|
||||
|
|
Loading…
Reference in a new issue