Add scripts directory with the necessary.

Noticed by: YAPHR.
This commit is contained in:
Edwin Groothuis 2007-09-24 08:08:56 +00:00
parent beb11917f3
commit be914b2227
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=200032

View file

@ -0,0 +1,10 @@
#!/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