Skip to content

Commit e99a63e

Browse files
committed
Fix compiler directive for platform-specific includes on Linux
1 parent 872e4be commit e99a63e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/PythonProcessor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You should have received a copy of the GNU General Public License
2020
along with this program. If not, see <http://www.gnu.org/licenses/>.
2121
*/
2222

23-
#if JUCE_LINUX
23+
#if defined (LINUX) || defined (__linux__)
2424
#include <dlfcn.h>
2525
#endif
2626
#include <filesystem>

0 commit comments

Comments
 (0)