mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 20:20:30 -04:00
10 lines
317 B
Bash
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
|