mirror of
https://github.com/owntone/owntone-server.git
synced 2025-02-09 04:38:10 -05:00
Solaris fixes
This commit is contained in:
parent
e296c15d04
commit
0a697cc0fa
16
configure.in
16
configure.in
@ -63,6 +63,14 @@ AC_ARG_WITH(gdbm,
|
|||||||
esac ], [use_gdbm=false])
|
esac ], [use_gdbm=false])
|
||||||
AM_CONDITIONAL(COND_USE_GDBM, test x$use_gdbm = xtrue)
|
AM_CONDITIONAL(COND_USE_GDBM, test x$use_gdbm = xtrue)
|
||||||
|
|
||||||
|
AC_ARG_WITH(gdbm-includes,
|
||||||
|
[--with-gdbm-includes[[=DIR]] use gdbm include files in DIR],[
|
||||||
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
||||||
|
Z_DIR=$withval
|
||||||
|
CPPFLAGS="${CPPFLAGS} -I$withval"
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
AC_ARG_WITH(howl-includes,
|
AC_ARG_WITH(howl-includes,
|
||||||
[--with-howl-includes[[=DIR]] use howl include files 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
|
||||||
@ -71,6 +79,14 @@ AC_ARG_WITH(howl-includes,
|
|||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
|
|
||||||
|
AC_ARG_WITH(gdbm-libs,
|
||||||
|
[--with-gdbm-libs[[=DIR]] use gdbm lib files in DIR],[
|
||||||
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
||||||
|
Z_DIR=$withval;
|
||||||
|
LDFLAGS="${LDFLAGS} -L$withval"
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
AC_ARG_WITH(howl-libs,
|
AC_ARG_WITH(howl-libs,
|
||||||
[--with-howl-libs[[=DIR]] use howl lib files in DIR],[
|
[--with-howl-libs[[=DIR]] use howl lib files in DIR],[
|
||||||
if test "$withval" != "no" -a "$withval" != "yes"; then
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
# include "config.h"
|
# include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define _POSIX_PTHREAD_SEMANTICS
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user