mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-15 08:45:54 -04:00
Merge new-rend-branch
This commit is contained in:
parent
7179a157e6
commit
b659e8ba9f
16
CREDITS
Normal file
16
CREDITS
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
/* $Id$ */
|
||||||
|
|
||||||
|
I've received lots of help from people on this project.
|
||||||
|
|
||||||
|
These are the people who have contributed to whatever
|
||||||
|
small success this project enjoys (in order of
|
||||||
|
contribution)
|
||||||
|
|
||||||
|
Aubin Paul (debian@outlyer.org)
|
||||||
|
* Patches for Debian package generation
|
||||||
|
* Precompiled Debian binaries
|
||||||
|
|
||||||
|
Paul Forgey (paulf@aphrodite.com)
|
||||||
|
* Tons of troubleshooting on Solaris
|
||||||
|
* Fixes for readdir_r
|
||||||
|
|
23
configure.in
23
configure.in
@ -53,15 +53,22 @@ esac
|
|||||||
dnl Checks for libraries.
|
dnl Checks for libraries.
|
||||||
AC_CHECK_LIB(pthread,pthread_create,LDFLAGS="$LDFLAGS -lpthread")
|
AC_CHECK_LIB(pthread,pthread_create,LDFLAGS="$LDFLAGS -lpthread")
|
||||||
|
|
||||||
AC_ARG_WITH(zlib,
|
AC_ARG_WITH(howl-includes,
|
||||||
[--with-zlib[[=DIR]] use zlib in DIR],[
|
[--with-howl-includes[[=DIR]] use howl include files in DIR],[
|
||||||
if test "$withval" != "no" -a "$withval" != "yes"; then
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
||||||
Z_DIR=$withval
|
Z_DIR=$withval
|
||||||
CPPFLAGS="${CPPFLAGS} -I$withval/include"
|
CPPFLAGS="${CPPFLAGS} -I$withval"
|
||||||
LDFLAGS="${LDFLAGS} -L$withval/lib"
|
|
||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
|
|
||||||
|
AC_ARG_WITH(howl-libs,
|
||||||
|
[--with-howl-libs[[=DIR]] use howl lib files in DIR],[
|
||||||
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
||||||
|
Z_DIR=$withval
|
||||||
|
LDFLAGS="${LDFLAGS} -L$withval"
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
AC_ARG_WITH(id3tag,
|
AC_ARG_WITH(id3tag,
|
||||||
[--with-id3tag[[=DIR]] use id3tag in DIR],[
|
[--with-id3tag[[=DIR]] use id3tag in DIR],[
|
||||||
if test "$withval" != "no" -a "$withval" != "yes"; then
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
||||||
@ -73,8 +80,8 @@ AC_ARG_WITH(id3tag,
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
AC_CHECK_HEADERS(zlib.h,LDFLAGS="${LDFLAGS} -lz",[
|
dnl AC_CHECK_HEADERS(zlib.h,LDFLAGS="${LDFLAGS} -lz",[
|
||||||
AC_MSG_ERROR([zlib.h not found... try --with-zlib=dir])])
|
dnl AC_MSG_ERROR([zlib.h not found... try --with-zlib=dir])])
|
||||||
|
|
||||||
AC_CHECK_HEADERS(id3tag.h,LDFLAGS="${LDFLAGS} -lid3tag",[
|
AC_CHECK_HEADERS(id3tag.h,LDFLAGS="${LDFLAGS} -lid3tag",[
|
||||||
AC_MSG_ERROR([id3tag.h not found... try --with-id3tag=dir])])
|
AC_MSG_ERROR([id3tag.h not found... try --with-id3tag=dir])])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user