build system fixes

This commit is contained in:
Guenter Obiltschnig 2013-09-18 20:12:27 +02:00
parent 4add907d71
commit 4923172241
2 changed files with 4 additions and 2 deletions

View File

@ -20,8 +20,10 @@ include $(POCO_BASE)/Data/ODBC/ODBC.make
# Note: # # Note: #
# Do not change linking order or move this line up, these libs have to be linked in this order. # # Do not change linking order or move this line up, these libs have to be linked in this order. #
################################################################################################## ##################################################################################################
ifneq ($(OSNAME),Darwin)
SYSLIBS += -lltdl SYSLIBS += -lltdl
ifneq ($(POCO_CONFIG),FreeBSD) endif
ifneq ($(OSNAME),FreeBSD)
SYSLIBS += -ldl SYSLIBS += -ldl
endif endif

View File

@ -177,7 +177,7 @@ done
# Create components file # Create components file
# #
echo "CppUnit" >${target}/components echo "CppUnit" >${target}/components
echo "CppUnit/WinTestRunner" >${target}/components echo "CppUnit/WinTestRunner" >>${target}/components
for comp in $comps ; for comp in $comps ;
do do
echo $comp >>${target}/components echo $comp >>${target}/components