Removed direct gssapi dependency
authorDaniel Kouřil <kouril@ics.muni.cz>
Tue, 7 Aug 2007 09:43:49 +0000 (09:43 +0000)
committerDaniel Kouřil <kouril@ics.muni.cz>
Tue, 7 Aug 2007 09:43:49 +0000 (09:43 +0000)
- s/gss_cred_id_t/edg_wll_GssCred
- removed unused gssapi library from Makefile

org.glite.jp.client/Makefile
org.glite.jp.client/src/jpimporter.c

index dfec596..bb3e673 100644 (file)
@@ -26,8 +26,6 @@ STAGETO=include/${globalprefix}/${jpprefix}
 VPATH=${top_srcdir}/src:${top_srcdir}/examples:${top_srcdir}/project$:${top_srcdir}/interface:${stagedir}/interface:${top_srcdir}/build
 
 GLOBUS_LIBS:=-L${globus_prefix}/lib \
-       -lglobus_common_${nothrflavour} \
-       -lglobus_gssapi_gsi_${nothrflavour} \
        -lglobus_ftp_client_${nothrflavour} \
        -lglobus_ftp_control_${nothrflavour}
 
index 453f2b5..bc27574 100644 (file)
@@ -83,7 +83,7 @@ static time_t         cert_mtime;
 static char            *server_cert = NULL,
                        *server_key = NULL,
                        *cadir = NULL;
-static gss_cred_id_t   mycred = GSS_C_NO_CREDENTIAL;
+static edg_wll_GssCred mycred = NULL;
 static char            *mysubj;
 struct timeval         to = {JPPS_NO_RESPONSE_TIMEOUT, 0};
 
@@ -157,7 +157,7 @@ int main(int argc, char *argv[])
        char                    *name,
                                pidfile[PATH_MAX] = GLITE_JPIMPORTER_PIDFILE;
        glite_gsplugin_Context  plugin_ctx;
-       gss_cred_id_t           cred;
+       edg_wll_GssCred         cred;
 
        name = strrchr(argv[0],'/');
        if (name) name++; else name = argv[0];