summaryrefslogtreecommitdiff
path: root/src/driver/slbt_driver_ctx.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-03-05 01:11:15 +0000
committermidipix <writeonce@midipix.org>2024-03-05 02:10:46 +0000
commite47cd7d15cee80e0a78fb7a4ec0d53e117d37379 (patch)
tree9f5d8a988db33f1941f9e61f3a6771ec32eeed86 /src/driver/slbt_driver_ctx.c
parent8ef9e14afc6d97e6cf2da17995c3278f7309cf25 (diff)
downloadslibtool-e47cd7d15cee80e0a78fb7a4ec0d53e117d37379.tar.bz2
slibtool-e47cd7d15cee80e0a78fb7a4ec0d53e117d37379.tar.xz
driver: finalized -dlopen, including the 'self' and 'force' special arguments.
Diffstat (limited to 'src/driver/slbt_driver_ctx.c')
-rw-r--r--src/driver/slbt_driver_ctx.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c
index 0e4ebda..8f4f2dc 100644
--- a/src/driver/slbt_driver_ctx.c
+++ b/src/driver/slbt_driver_ctx.c
@@ -722,8 +722,6 @@ int slbt_lib_get_driver_ctx(
break;
case TAG_DLOPEN:
- break;
-
case TAG_DLPREOPEN:
ndlopen++;
break;
@@ -1011,6 +1009,10 @@ int slbt_lib_get_driver_ctx(
for (entry=meta->entries; entry->fopt || entry->arg; entry++) {
if (entry->fopt) {
switch (entry->tag) {
+ case TAG_DLOPEN:
+ ctx->cctx.drvflags |= SLBT_DRIVER_DLOPEN_FORCE;
+ break;
+
case TAG_DLPREOPEN:
if (!strcmp(entry->arg,"self")) {
ctx->cctx.drvflags |= SLBT_DRIVER_DLPREOPEN_SELF;