X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=blobdiff_plain;f=src%2Fafb-autoset.c;h=f169bc1f7b319338733d4ace0e0027eb6f32f66a;hp=cdfd280681c85b6d35aeee1304a7d7fc80a8dabb;hb=65353dce81a629e042800bb7b86fcd869a76727e;hpb=043c27c3a8fd323d59e41288b6fd24f0e9bfa9a3 diff --git a/src/afb-autoset.c b/src/afb-autoset.c index cdfd2806..f169bc1f 100644 --- a/src/afb-autoset.c +++ b/src/afb-autoset.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016-2019 "IoT.bzh" + * Copyright (C) 2015-2020 "IoT.bzh" * Author José Bollo * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -94,6 +94,7 @@ int afb_autoset_add_ws(const char *path, struct afb_apiset *declare_set, struct /*******************************************************************/ +#if WITH_DYNAMIC_BINDING static int create_so(const char *path, struct afb_apiset *declare_set, struct afb_apiset *call_set) { return afb_api_so_add_binding(path, declare_set, call_set) >= 0; @@ -108,6 +109,7 @@ int afb_autoset_add_so(const char *path, struct afb_apiset *declare_set, struct { return add(path, declare_set, call_set, onlack_so); } +#endif /*******************************************************************/ @@ -120,9 +122,11 @@ static int create_any(const char *path, struct afb_apiset *declare_set, struct a rc = stat(path, &st); if (!rc) { switch(st.st_mode & S_IFMT) { +#if WITH_DYNAMIC_BINDING case S_IFREG: rc = afb_api_so_add_binding(path, declare_set, call_set); break; +#endif case S_IFSOCK: snprintf(sockname, sizeof sockname, "unix:%s", path); rc = afb_api_ws_add_client(sockname, declare_set, call_set, 0);