aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorretro-wertz2019-08-07 18:49:38 +0800
committerretro-wertz2019-08-07 19:00:52 +0800
commit540c8804283ddb93d48fc7af4b4539d0840851d4 (patch)
treedc13a19471b5497c66d148c6c4afbc64ac41cefd /configure
parent20a09b8ce3c86e1ebc97b260e32ef78abd508844 (diff)
downloadpcsx_rearmed-540c8804283ddb93d48fc7af4b4539d0840851d4.tar.gz
pcsx_rearmed-540c8804283ddb93d48fc7af4b4539d0840851d4.tar.bz2
pcsx_rearmed-540c8804283ddb93d48fc7af4b4539d0840851d4.zip
Do not compile plugins when using the non-static build method
- This is meant for platforms that still uses the non-static build method to compile the libretro core (aka versions of retropie) - The output file is still libretro.so to preserve any compatibility with existing script - Using the static makefile is still recommended.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure b/configure
index c3ff68f..4f501b0 100755
--- a/configure
+++ b/configure
@@ -550,12 +550,15 @@ echo >> $config_mak
if [ "$platform" = "libretro" ]; then
echo "TARGET = libretro.so" >> $config_mak
+ echo "HAVE_CHD = 1" >> $config_mak
fi
echo "ARCH = $ARCH" >> $config_mak
echo "PLATFORM = $platform" >> $config_mak
echo "BUILTIN_GPU = $builtin_gpu" >> $config_mak
echo "SOUND_DRIVERS = $sound_drivers" >> $config_mak
-echo "PLUGINS = $plugins" >> $config_mak
+if [ "$platform" != "libretro" ]; then
+ echo "PLUGINS = $plugins" >> $config_mak
+fi
if [ "$have_arm_neon" = "yes" ]; then
echo "HAVE_NEON = 1" >> $config_mak
fi