Add support for dragonfly as a target name

This commit is contained in:
Juan Jose Garcia Ripoll 2012-08-15 19:53:39 +02:00
parent c7faea1db0
commit fa09c80800
2 changed files with 20 additions and 0 deletions

10
src/aclocal.m4 vendored
View file

@ -291,6 +291,16 @@ case "${host_os}" in
SONAME="${SHAREDPREFIX}ecl.${SHAREDEXT}.SOVERSION"
SONAME_LDFLAGS="-Wl,-soname,SONAME"
;;
dragonfly*)
thehost='dragonfly'
THREAD_LIBS='-lpthread'
SHARED_LDFLAGS="-shared ${LDFLAGS}"
BUNDLE_LDFLAGS="-shared ${LDFLAGS}"
ECL_LDRPATH="-Wl,--rpath,~A"
clibs=""
SONAME="${SHAREDPREFIX}ecl.${SHAREDEXT}.SOVERSION"
SONAME_LDFLAGS="-Wl,-soname,SONAME"
;;
freebsd*)
thehost='freebsd'
THREAD_LIBS='-lpthread'

10
src/configure vendored
View file

@ -4567,6 +4567,16 @@ case "${host_os}" in
SONAME="${SHAREDPREFIX}ecl.${SHAREDEXT}.SOVERSION"
SONAME_LDFLAGS="-Wl,-soname,SONAME"
;;
dragonfly*)
thehost='dragonfly'
THREAD_LIBS='-lpthread'
SHARED_LDFLAGS="-shared ${LDFLAGS}"
BUNDLE_LDFLAGS="-shared ${LDFLAGS}"
ECL_LDRPATH="-Wl,--rpath,~A"
clibs=""
SONAME="${SHAREDPREFIX}ecl.${SHAREDEXT}.SOVERSION"
SONAME_LDFLAGS="-Wl,-soname,SONAME"
;;
freebsd*)
thehost='freebsd'
THREAD_LIBS='-lpthread'