ports/audio/csound/scripts/check-fltk-threads.sh
Edwin Groothuis be914b2227 Add scripts directory with the necessary.
Noticed by: YAPHR.
2007-09-24 08:08:56 +00:00

10 lines
317 B
Bash

#!/bin/sh
if [ -z "$(fltk-config --ldflags | grep pthread)" ]; then
echo "FLTK does not have threading support enabled.e"
echo "Please remove the x11-toolkits/fltk port first and recompile csound again"
echo "The csound port will automatically install the x11-toolkits/fltk-threads port."
exit 1
else
exit 0
fi