mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-24 13:13:17 -05:00
fix for MacOS 10.3
This commit is contained in:
parent
7bd9372880
commit
612f2fa2fd
@ -14,9 +14,10 @@ AC_CANONICAL_HOST
|
|||||||
AC_ARG_ENABLE(debug,Enable debugging features,CPPFLAGS="$CPPFLAGS -DDEBUG -g")
|
AC_ARG_ENABLE(debug,Enable debugging features,CPPFLAGS="$CPPFLAGS -DDEBUG -g")
|
||||||
|
|
||||||
dnl Darwin's stupid cpp preprocessor....
|
dnl Darwin's stupid cpp preprocessor....
|
||||||
|
echo Host type is $host
|
||||||
case $host in
|
case $host in
|
||||||
*darwin*)
|
*darwin*)
|
||||||
CPPFLAGS="$CPPFLAGS -no-cpp-precomp -DHAVE_SOCKADDR_SA_LEN";;
|
CPPFLAGS="$CPPFLAGS -no-cpp-precomp -DHAVE_SOCKADDR_SA_LEN -DHAVE_SOCKLEN_T";;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
dnl Checks for libraries.
|
dnl Checks for libraries.
|
||||||
|
18
src/Makefile
18
src/Makefile
@ -38,10 +38,10 @@ pkglibdir = $(libdir)/mt-daapd
|
|||||||
pkgincludedir = $(includedir)/mt-daapd
|
pkgincludedir = $(includedir)/mt-daapd
|
||||||
top_builddir = ..
|
top_builddir = ..
|
||||||
|
|
||||||
ACLOCAL = ${SHELL} /Users/ron/Documents/School/cs4953-Concurrency/mt-daapd/missing --run aclocal-1.6
|
ACLOCAL = aclocal-1.6
|
||||||
AUTOCONF = ${SHELL} /Users/ron/Documents/School/cs4953-Concurrency/mt-daapd/missing --run autoconf
|
AUTOCONF = autoconf
|
||||||
AUTOMAKE = ${SHELL} /Users/ron/Documents/School/cs4953-Concurrency/mt-daapd/missing --run automake-1.6
|
AUTOMAKE = automake-1.6
|
||||||
AUTOHEADER = ${SHELL} /Users/ron/Documents/School/cs4953-Concurrency/mt-daapd/missing --run autoheader
|
AUTOHEADER = autoheader
|
||||||
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||||
INSTALL = /sw/bin/install -c
|
INSTALL = /sw/bin/install -c
|
||||||
@ -60,12 +60,12 @@ NORMAL_UNINSTALL = :
|
|||||||
PRE_UNINSTALL = :
|
PRE_UNINSTALL = :
|
||||||
POST_UNINSTALL = :
|
POST_UNINSTALL = :
|
||||||
host_alias =
|
host_alias =
|
||||||
host_triplet = powerpc-apple-darwin6.8
|
host_triplet = powerpc-apple-darwin7.0.0
|
||||||
|
|
||||||
EXEEXT =
|
EXEEXT =
|
||||||
OBJEXT = o
|
OBJEXT = o
|
||||||
PATH_SEPARATOR = :
|
PATH_SEPARATOR = :
|
||||||
AMTAR = ${SHELL} /Users/ron/Documents/School/cs4953-Concurrency/mt-daapd/missing --run tar
|
AMTAR = tar
|
||||||
AWK = awk
|
AWK = awk
|
||||||
CC = gcc
|
CC = gcc
|
||||||
DEPDIR = .deps
|
DEPDIR = .deps
|
||||||
@ -76,7 +76,7 @@ VERSION = 0.1.0
|
|||||||
V_NETLIBS =
|
V_NETLIBS =
|
||||||
am__include = include
|
am__include = include
|
||||||
am__quote =
|
am__quote =
|
||||||
install_sh = /Users/ron/Documents/School/cs4953-Concurrency/mt-daapd/install-sh
|
install_sh = /Users/ron/Documents/School/cs4953 - Concurrency/mt-daapd/install-sh
|
||||||
|
|
||||||
# $Id$
|
# $Id$
|
||||||
#
|
#
|
||||||
@ -101,7 +101,7 @@ mt_daapd_LDFLAGS =
|
|||||||
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
DEFS = -DHAVE_CONFIG_H
|
||||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
|
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
|
||||||
CPPFLAGS = -DDEBUG -g -no-cpp-precomp -DHAVE_SOCKADDR_SA_LEN
|
CPPFLAGS = -DDEBUG -g -no-cpp-precomp -DHAVE_SOCKADDR_SA_LEN -DHAVE_SOCKLEN_T
|
||||||
LDFLAGS = -lpthread
|
LDFLAGS = -lpthread
|
||||||
LIBS =
|
LIBS =
|
||||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||||
@ -227,7 +227,7 @@ mDNSUNP.obj: mdns/mDNSUNP.c
|
|||||||
depfile='$(DEPDIR)/mDNSUNP.Po' tmpdepfile='$(DEPDIR)/mDNSUNP.TPo' \
|
depfile='$(DEPDIR)/mDNSUNP.Po' tmpdepfile='$(DEPDIR)/mDNSUNP.TPo' \
|
||||||
$(CCDEPMODE) $(depcomp) \
|
$(CCDEPMODE) $(depcomp) \
|
||||||
$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mDNSUNP.obj `cygpath -w mdns/mDNSUNP.c`
|
$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mDNSUNP.obj `cygpath -w mdns/mDNSUNP.c`
|
||||||
CCDEPMODE = depmode=gcc
|
CCDEPMODE = depmode=gcc3
|
||||||
uninstall-info-am:
|
uninstall-info-am:
|
||||||
|
|
||||||
ETAGS = etags
|
ETAGS = etags
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
web_root /Users/ron/Documents/School/cs4953-Concurrency/mt-daapd/admin-root
|
web_root /Users/ron/Documents/School/cs4953 - Concurrency/mt-daapd/admin-root
|
||||||
port 3689
|
port 3689
|
||||||
admin_password secret
|
admin_password secret
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user