Page 1 of 1

Libgig Build Error?? Help

Posted: Fri Jul 23, 2010 1:33 am
by vekta
Hi there, i am attempting to install the linux sampler on my MacBook Pro (OS X 10.5.8). I am currently building the libgig-3.3.0 library to allow the linux sampler to compile. I have configured all of the software Libgig is dependant on (Libtool, Audiofile, Libsndfile, Pkg-Config). The Xcode auto-config build for OSX is defining these 7 errors

(1).deps/DLS.Plo: No such file or directory
(2).deps/RIFF.Plo: No such file or directory
(3).deps/dlsdump.Po: No such file or directory
(4).deps/gig.Plo: No such file or directory
(5).deps/gigdump.Po: No such file or directory
(6).deps/gigextract-gigextract.Po: No such file or directory
(7).deps/rifftree.Po: No such file or directory

I can view these supposedly 'absent' files via terminal and there in the correct location. .deps is a read-only folder though, could this be why Xcode isn't able to communicate?

Here is the point in the code of the libgig auto-config that this error occurs, i have outlined where by "(!!!ERROR!!!)"

distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
list='$(DISTFILES)'; for file in $$list; do \
case $$file in \
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
esac; \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
dir="/$$dir"; \
$(mkdir_p) "$(distdir)$$dir"; \
else \
dir=''; \
fi; \
if test -d $$d/$$file; then \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
fi; \
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
|| cp -p $$d/$$file $(distdir)/$$file \
(!!!ERROR!!!) || exit 1; \
fi; \
done
list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test -d "$(distdir)/$$subdir" \
|| mkdir "$(distdir)/$$subdir" \
|| exit 1; \
(cd $$subdir && \
$(MAKE) $(AM_MAKEFLAGS) \
top_distdir="../$(top_distdir)" \
distdir="../$(distdir)/$$subdir" \
distdir) \
|| exit 1; \
fi; \
done
check-am: all-am

I would really appreciate some insight into this issue as i am truly stuck, many thanks, Joe