hi carmen,
carmen wrote: ...
you are getting the linux build. you might want to post on the mingw sourceforge tracker to have 'uname -a' report something besides MINGW32_NT-5.1, in the meantime you can remove the "ifeq ($(OS_NAME),MinGW)" thing from Makefile.common or change it to match uname -a...
currently, OS_NAME is read from uname -s. How about testing for ifneq (,$(findstring MinGW,$(OS_NAME)))? Or should this be ifneq (,$(findstring MINGW,$(OS_NAME))), or both?
...
miXed/ all builds great, well, had to change this:
< LFLAGS = -shared $(PD_DIR)/../bin/pd.dll
LFLAGS = -shared $(PD_DIR)/../bin/pd.dll -Wl,--enable-runtime-pseudo-reloc
done, thanks
Krzysztof