diff options
author | Günther Deschner <gdeschner@redhat.com> | 2013-01-24 16:31:52 +0100 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2013-04-08 09:29:19 -0400 |
commit | 9e6e98fec07cf6e967da9b2ff99609c13f960851 (patch) | |
tree | 7cd0801c5fdb479fe6f8de9bfd092c44e9785ea1 /proxy/src/gp_config_dinglibs.c | |
parent | f5fb025d692e429b9be5aef890179efd1a40e360 (diff) | |
download | gss-proxy-9e6e98fec07cf6e967da9b2ff99609c13f960851.tar.gz gss-proxy-9e6e98fec07cf6e967da9b2ff99609c13f960851.tar.xz gss-proxy-9e6e98fec07cf6e967da9b2ff99609c13f960851.zip |
Prefer ini_config library support over iniparser support.
Abort if none of these libraries are found.
Signed-off-by: Günther Deschner <gdeschner@redhat.com>
Reviewed-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'proxy/src/gp_config_dinglibs.c')
-rw-r--r-- | proxy/src/gp_config_dinglibs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proxy/src/gp_config_dinglibs.c b/proxy/src/gp_config_dinglibs.c index 3ad16c2..c6a5a01 100644 --- a/proxy/src/gp_config_dinglibs.c +++ b/proxy/src/gp_config_dinglibs.c @@ -33,7 +33,7 @@ #include "gp_config.h" #include "gp_config_dinglibs.h" -#ifdef HAVE_DINGLIBS +#ifdef WITH_DINGLIBS #include <ini_configobj.h> @@ -202,4 +202,4 @@ char *gp_dinglibs_get_secname(struct gp_ini_context *ctx, return secname; } -#endif /* HAVE_DINGLIBS */ +#endif /* WITH_DINGLIBS */ |