aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2025-05-26 19:14:27 +0000
committerLaurent Bercot <ska@appnovation.com>2025-05-26 19:14:27 +0000
commitbbb07da0e2b25de74fb23baadd90e943094e68f2 (patch)
tree8c987590de58affb9e074582a72e6459ca93edec
parent432ef8b75f9e72b948be6474d804ccedc85c20e1 (diff)
downloadexecline-bbb07da0e2b25de74fb23baadd90e943094e68f2.tar.gz
Support shlibs on MacOS
Signed-off-by: Laurent Bercot <ska@appnovation.com>
-rwxr-xr-xconfigure6
-rwxr-xr-xtools/configure.template6
2 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index a6eec3a..83aaf49 100755
--- a/configure
+++ b/configure
@@ -200,9 +200,9 @@ for arg ; do
--disable-shared|--enable-shared=no) shared=false ;;
--enable-static|--enable-static=yes) static=true ;;
--disable-static|--enable-static=no) static=false ;;
- --enable-allstatic|--enable-allstatic=yes) allstatic=true ;;
- --disable-allstatic|--enable-allstatic=no) allstatic=false ; evenmorestatic=false ;;
- --enable-static-libc|--enable-static-libc=yes) allstatic=true ; evenmorestatic=true ;;
+ --enable-allstatic|--enable-allstatic=yes) static=true ; allstatic=true ;;
+ --disable-allstatic|--enable-allstatic=no) allstatic=false ; evenmorestatic=false ; shared=true ;;
+ --enable-static-libc|--enable-static-libc=yes) static=true ; allstatic=true ; evenmorestatic=true ;;
--disable-static-libc|--enable-static-libc=no) evenmorestatic=false ;;
--enable-all-pic|--enable-all-pic=yes) allpic=true ;;
--disable-all-pic|--enable-all-pic=no) allpic=false ;;
diff --git a/tools/configure.template b/tools/configure.template
index 20c8516..db8f59a 100755
--- a/tools/configure.template
+++ b/tools/configure.template
@@ -193,9 +193,9 @@ for arg ; do
--disable-shared|--enable-shared=no) shared=false ;;
--enable-static|--enable-static=yes) static=true ;;
--disable-static|--enable-static=no) static=false ;;
- --enable-allstatic|--enable-allstatic=yes) allstatic=true ;;
- --disable-allstatic|--enable-allstatic=no) allstatic=false ; evenmorestatic=false ;;
- --enable-static-libc|--enable-static-libc=yes) allstatic=true ; evenmorestatic=true ;;
+ --enable-allstatic|--enable-allstatic=yes) static=true ; allstatic=true ;;
+ --disable-allstatic|--enable-allstatic=no) allstatic=false ; evenmorestatic=false ; shared=true ;;
+ --enable-static-libc|--enable-static-libc=yes) static=true ; allstatic=true ; evenmorestatic=true ;;
--disable-static-libc|--enable-static-libc=no) evenmorestatic=false ;;
--enable-all-pic|--enable-all-pic=yes) allpic=true ;;
--disable-all-pic|--enable-all-pic=no) allpic=false ;;