Hello list,
Decided to watch the flags of the externals that gave me problems and a few others. I made the following changes and it worked.
sll@sll-cube:/home/pd-extended/externals/gem2pdp$ vim Makefile.in
Line: 16
CFLAGS = -fPIC -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math \
sll@sll-cube:/home/pd-extended/externals/miXed$ vim Makefile.common
Line: 119
CFLAGS = -fPIC $(WARN_CFLAGS) $(OPT_CFLAGS) $(DEFINES) $(INCLUDES)
sll@sll-cube:/home/pd-extended/externals/pmpd/src$ vim makefile
Line: 64
LINUXCFLAGS = -fPIC -DPD -O2 -funroll-loops -fomit-frame-pointer \
sll@sll-cube:/home/pd-extended/externals/pidip$ vim Makefile.in
Line: 19
PDP_PIDIP_CFLAGS = $(MPEG4IP_CFLAGS) $(IMLIB_CFLAGS) \
-DPD -DX_DISPLAY_MISSING -O2 -funroll-loops -fomit-frame-pointer -ffast-math \
-fPIC -Wall -W -Wstrict-prototypes
Line: 25
PDP_PIDIP_CPPFLAGS = $(MPEG4IP_CFLAGS) $(IMLIB_CFLAGS) \
-DPD -DX_DISPLAY_MISSING -O2 -funroll-loops -fomit-frame-pointer -ffast-math \
-fPIC -Wall -W -Wstrict-prototypes \
sll@sll-cube:/home/pd-extended/externals/pdvjtools$ vim colorgrid/Makefile
Line: 13
LINUXCFLAGS = -fPIC -DPD -DUNIX -DICECAST -O2 -funroll-loops -fomit-frame-pointer \
sll@sll-cube:/home/pd-extended/externals/pdvjtools$ vim pix_preview/Makefile
Line:12
GEM2PNM_CPPFLAGS = -fPIC -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math \
sll@sll-cube:/home/pd-extended/externals/pdp_opencv$ vim Makefile
Line: 9
CPPFLAGS = -fPIC -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math \
sll@sll-cube:/home/pd-extended/externals/pix_opencv$ vim Makefile
Line: 9
CPPFLAGS = -fPIC -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math \
sll@sll-cube:/home/pd-extended/packages/linux_make$ sudo make install
....
make[1]: Leaving directory `/home/pd-extended/packages'
linux_make install succeeded!
sll@sll-cube:/home/pd-extended/pd/bin$ ./pd
About: Pd version 0.42-0test3
Then I need set paths and startup libs.
And help files are not in the browser.
Now I begin to see how it behaves.
Be well modify these changes in the trunk, what do you think?