Mac-sources mac_backtrace.[Ch] were missing from build...

svn path=/trunk/boinc/; revision=8328
This commit is contained in:
Reinhard Prix 2005-09-29 21:02:27 +00:00
parent 139b7906f4
commit 78700671d7
2 changed files with 19 additions and 1 deletions

View File

@ -12365,3 +12365,10 @@ Rom 29 Sept 2005
clientgui/wizards/
AccountInfoPage.cpp
ProjectProcessingPage.cpp
Reinhard 29 Sept 2005
- added forgotten Mac-sources 'mac_backtrace.[Ch]' to build
lib/
Makefile.am

View File

@ -33,6 +33,14 @@ lib_LIBRARIES = libboinc.a
EXTRA_DIST = *.h *.C
if OS_DARWIN
mac_sources = \
mac_backtrace.C \
mac_backtrace.h
else
mac_sources =
endif
libboinc_a_SOURCES = \
app_ipc.C \
base64.C \
@ -56,7 +64,10 @@ libboinc_a_SOURCES = \
prefs.C \
proxy_info.C \
shmem.C \
util.C
util.C \
$(mac_sources)
include_HEADERS = \
app_ipc.h \