configure: unset `PIC` cflag for plugins if not used
authorApaczer <94932128+Apaczer@users.noreply.github.com>
Wed, 26 Mar 2025 21:14:57 +0000 (22:14 +0100)
committernotaz <notasas@gmail.com>
Sun, 30 Mar 2025 15:42:32 +0000 (18:42 +0300)
also don't redefine PIC in Makefiles

configure
plugins/gpu-gles/Makefile
plugins/spunull/Makefile

index b4ab4a2..ee6f0c0 100755 (executable)
--- a/configure
+++ b/configure
@@ -355,6 +355,8 @@ fi
 # supposedly we can avoid -fPIC on armv5 for slightly better performace?
 if [ "$ARCH" != "arm" -o "$have_armv6" = "yes" ]; then
   PLUGIN_CFLAGS="$PLUGIN_CFLAGS -fPIC"
+else
+  PLUGIN_CFLAGS="$PLUGIN_CFLAGS -fno-PIC"
 fi
 
 case "$platform" in
index e914764..6e10e18 100644 (file)
@@ -1,4 +1,4 @@
-CFLAGS += -ggdb -fPIC -O2 # -Wall\r
+CFLAGS += -ggdb -O2 # -Wall\r
 \r
 include ../../config.mak\r
 \r
index fcfec80..d4351a6 100644 (file)
@@ -6,8 +6,10 @@ PLUGINDIR = $(shell basename $(WD))
 
 all: ../../config.mak $(TARGET)
 
+CFLAGS += $(PLUGIN_CFLAGS)
+
 $(TARGET): spunull.c
-       $(CC) $(CFLAGS) -shared -fPIC -ggdb -O2 -o $@ $^
+       $(CC) $(CFLAGS) -shared -ggdb -O2 -o $@ $^
        ln -fs $(PLUGINDIR)/$(TARGET) ../
 
 clean: