gnutls-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

incompatible pointer type(s), depreciation warnings, and cross reference


From: Vasiliy
Subject: incompatible pointer type(s), depreciation warnings, and cross reference(s) to nonexistent node(s)
Date: Wed, 10 Jul 2013 13:34:12 +0200

Dear Developer Team,

FYI: attached are the warnings & errors resulted from compilation of
the latest sources on the following platform:

$ uname -srvmo
CYGWIN_NT-6.1 1.7.21(0.267/5/3) 2013-06-28 10:03 x86_64 Cygwin

Kind regards,
Vasiliy

<code>
Making install in nettle
make[2]: Entering directory
'/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/build/lib/nettle'
  CC       pk.lo
  CC       mpi.lo
  CC       mac.lo
  CC       cipher.lo
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:
In function '_wrap_nettle_pk_encrypt':
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:221:9:
warning: passing argument 3 of 'nettle_rsa_encrypt' from incompatible
pointer type [enabled by default]
         ret = rsa_encrypt(&pub, NULL, rnd_func, plaintext->size,
plaintext->data, p);
         ^
In file included from
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:41:0:
/usr/include/nettle/rsa.h:281:1: note: expected 'void (*)(void *,
size_t,  uint8_t *)' but argument is of type 'void (*)(void *,
unsigned int,  uint8_t *)'
 rsa_encrypt(const struct rsa_public_key *key,
 ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:
In function '_wrap_nettle_pk_decrypt':
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:292:30:
warning: passing argument 4 of 'nettle_rsa_decrypt_tr' from
incompatible pointer type [enabled by default]
                              TOMPZ(c));
                              ^
In file included from
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:41:0:
/usr/include/nettle/rsa.h:299:1: note: expected 'void (*)(void *,
size_t,  uint8_t *)' but argument is of type 'void (*)(void *,
unsigned int,  uint8_t *)'
 rsa_decrypt_tr(const struct rsa_public_key *pub,
 ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:292:30:
warning: passing argument 5 of 'nettle_rsa_decrypt_tr' from
incompatible pointer type [enabled by default]
                              TOMPZ(c));
                              ^
In file included from
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:41:0:
/usr/include/nettle/rsa.h:299:1: note: expected 'size_t *' but
argument is of type 'unsigned int *'
 rsa_decrypt_tr(const struct rsa_public_key *pub,
 ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:
In function '_wrap_nettle_pk_sign':
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:359:9:
warning: passing argument 3 of 'nettle_ecdsa_sign' from incompatible
pointer type [enabled by default]
         ecdsa_sign(&priv, NULL, rnd_func, hash_len, vdata->data, &sig);
         ^
In file included from
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:45:0:
/usr/include/nettle/ecdsa.h:49:1: note: expected 'void (*)(void *,
size_t,  uint8_t *)' but argument is of type 'void (*)(void *,
unsigned int,  uint8_t *)'
 ecdsa_sign (const struct ecc_scalar *key,
 ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:397:22:
warning: passing argument 4 of '_nettle_dsa_sign' from incompatible
pointer type [enabled by default]
                      hash_len, vdata->data, &sig);
                      ^
In file included from
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:40:0:
/usr/include/nettle/dsa.h:276:1: note: expected 'void (*)(void *,
size_t,  uint8_t *)' but argument is of type 'void (*)(void *,
unsigned int,  uint8_t *)'
 _dsa_sign(const struct dsa_public_key *pub,
 ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:429:33:
warning: passing argument 4 of 'nettle_rsa_pkcs1_sign_tr' from
incompatible pointer type [enabled by default]
                                 vdata->size, vdata->data, s);
                                 ^
In file included from
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:41:0:
/usr/include/nettle/rsa.h:181:1: note: expected 'void (*)(void *,
size_t,  uint8_t *)' but argument is of type 'void (*)(void *,
unsigned int,  uint8_t *)'
 rsa_pkcs1_sign_tr(const struct rsa_public_key *pub,
 ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:
In function 'wrap_nettle_pk_generate_params':
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:635:33:
warning: passing argument 4 of 'nettle_dsa_generate_keypair' from
incompatible pointer type [enabled by default]
                                 rnd_func, NULL, NULL, level, q_bits);
                                 ^
In file included from
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:40:0:
/usr/include/nettle/dsa.h:200:1: note: expected 'void (*)(void *,
size_t,  uint8_t *)' but argument is of type 'void (*)(void *,
unsigned int,  uint8_t *)'
 dsa_generate_keypair(struct dsa_public_key *pub,
 ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:683:33:
warning: passing argument 4 of 'nettle_rsa_generate_keypair' from
incompatible pointer type [enabled by default]
                                 rnd_func, NULL, NULL, level, 0);
                                 ^
In file included from
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:41:0:
/usr/include/nettle/rsa.h:315:1: note: expected 'void (*)(void *,
size_t,  uint8_t *)' but argument is of type 'void (*)(void *,
unsigned int,  uint8_t *)'
 rsa_generate_keypair(struct rsa_public_key *pub,
 ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:737:9:
warning: passing argument 4 of 'nettle_ecdsa_generate_keypair' from
incompatible pointer type [enabled by default]
         ecdsa_generate_keypair(&pub, &key, NULL, rnd_func);
         ^
In file included from
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/pk.c:45:0:
/usr/include/nettle/ecdsa.h:61:1: note: expected 'void (*)(void *,
size_t,  uint8_t *)' but argument is of type 'void (*)(void *,
unsigned int,  uint8_t *)'
 ecdsa_generate_keypair (struct ecc_point *pub,
 ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/cipher.c:
In function 'wrap_nettle_cipher_init':
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/cipher.c:161:20:
warning: assignment from incompatible pointer type [enabled by
default]
       ctx->encrypt = cbc_encrypt;
                    ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/cipher.c:162:20:
warning: assignment from incompatible pointer type [enabled by
default]
       ctx->decrypt = cbc_decrypt;
                    ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/cipher.c:171:20:
warning: assignment from incompatible pointer type [enabled by
default]
       ctx->encrypt = cbc_encrypt;
                    ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/cipher.c:172:20:
warning: assignment from incompatible pointer type [enabled by
default]
       ctx->decrypt = cbc_decrypt;
                    ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/cipher.c:179:20:
warning: assignment from incompatible pointer type [enabled by
default]
       ctx->encrypt = cbc_encrypt;
                    ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/cipher.c:180:20:
warning: assignment from incompatible pointer type [enabled by
default]
       ctx->decrypt = cbc_decrypt;
                    ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/cipher.c:187:20:
warning: assignment from incompatible pointer type [enabled by
default]
       ctx->encrypt = cbc_encrypt;
                    ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/cipher.c:188:20:
warning: assignment from incompatible pointer type [enabled by
default]
       ctx->decrypt = cbc_decrypt;
                    ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/cipher.c:220:20:
warning: assignment from incompatible pointer type [enabled by
default]
       ctx->encrypt = cbc_encrypt;
                    ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/nettle/cipher.c:221:20:
warning: assignment from incompatible pointer type [enabled by
default]
       ctx->decrypt = cbc_decrypt;
                    ^
  CC       rnd.lo
  CC       init.lo
  CC       egd.lo
  CCLD     libcrypto.la
make[3]: Entering directory
'/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/build/lib/nettle'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory
'/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/build/lib/nettle'
make[2]: Leaving directory
'/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/build/lib/nettle'

...

/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:
In function 'gnutls_pkcs11_add_provider':
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:237:3:
warning: 'p11_kit_load_initialize_module' is deprecated (declared at
/usr/include/p11-kit-1/p11-kit/deprecated.h:86): Use
p11_kit_module_load instead [-Wdeprecated-declarations]
   if (p11_kit_load_initialize_module (name, &module) != CKR_OK)
   ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:253:7:
warning: 'p11_kit_finalize_module' is deprecated (declared at
/usr/include/p11-kit-1/p11-kit/deprecated.h:83): Use
module->C_Finalize instead [-Wdeprecated-declarations]
       p11_kit_finalize_module (module);
       ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:
In function 'initialize_automatic_p11_kit':
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:466:3:
warning: 'p11_kit_initialize_registered' is deprecated (declared at
/usr/include/p11-kit-1/p11-kit/deprecated.h:61): Use
p11_kit_modules_load instead [-Wdeprecated-declarations]
   rv = p11_kit_initialize_registered ();
   ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:477:3:
warning: 'p11_kit_registered_modules' is deprecated (declared at
/usr/include/p11-kit-1/p11-kit/deprecated.h:67): Use
p11_kit_modules_release instead [-Wdeprecated-declarations]
   modules = p11_kit_registered_modules ();
   ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:480:7:
warning: 'p11_kit_registered_module_to_name' is deprecated (declared
at /usr/include/p11-kit-1/p11-kit/deprecated.h:73): Use
p11_kit_module_get_name instead [-Wdeprecated-declarations]
       name = p11_kit_registered_module_to_name (modules[i]);
       ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:
In function 'gnutls_pkcs11_reinit':
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:565:11:
warning: 'p11_kit_initialize_module' is deprecated (declared at
/usr/include/p11-kit-1/p11-kit/deprecated.h:80): Use
module->C_Initialize instead [-Wdeprecated-declarations]
           rv = p11_kit_initialize_module(providers[i].module);
           ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:
In function 'gnutls_pkcs11_deinit':
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:599:9:
warning: 'p11_kit_finalize_module' is deprecated (declared at
/usr/include/p11-kit-1/p11-kit/deprecated.h:83): Use
module->C_Finalize instead [-Wdeprecated-declarations]
         p11_kit_finalize_module (providers[i].module);
         ^
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/lib/pkcs11.c:604:5:
warning: 'p11_kit_finalize_registered' is deprecated (declared at
/usr/include/p11-kit-1/p11-kit/deprecated.h:64): Use
p11_kit_modules_release instead [-Wdeprecated-declarations]
     p11_kit_finalize_registered ();
     ^
...

make[3]: Entering directory
'/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/build/guile/src'
  CC       guile_gnutls_v_2_la-core.lo
  CC       guile_gnutls_v_2_la-errors.lo
  CC       guile_gnutls_v_2_la-utils.lo
In file included from
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/guile/src/core.c:519:0:
./priorities.i.c: In function 'scm_gnutls_set_session_cipher_priority_x':
./priorities.i.c:11:3: warning: implicit declaration of function
'scm_c_issue_deprecation_warning' [-Wimplicit-function-declaration]
   scm_c_issue_deprecation_warning ("`set-session-cipher-priority!' is
deprecated, use `set-session-priorities!' instead");
   ^
  CCLD     guile-gnutls-v-2.la

...

Making install in reference
make[3]: Entering directory
'/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/build/doc/reference'
  DOC   Scanning header files
  DOC   Rebuilding template files
./gnutls-unused.txt:1: warning: 3 unused declarations.They should be
added to gnutls-sections.txt in the appropriate place.
make[4]: Entering directory
'/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/build/doc/reference'
...
make[3]: Entering directory
'/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/build/doc'
Updating 
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc/version.texi
  MAKEINFO 
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc/gnutls.info
./enums/gnutls_compression_method_t:12: Misplaced {.
./enums/gnutls_compression_method_t:12: Misplaced }.
Updating 
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc/version-guile.texi
./enums/gnutls_certificate_status_t:8: Misplaced {.
./enums/gnutls_certificate_status_t:8: Misplaced }.
./enums/gnutls_certificate_status_t:8: Misplaced {.
./enums/gnutls_certificate_status_t:8: Misplaced }.
./gnutls-api.texi:61: Unmatched address@hidden'.
./dtls-api.texi:32: Unmatched address@hidden'.
./dtls-api.texi:33: Misplaced {.
./dtls-api.texi:33: Misplaced }.
./dtls-api.texi:39: Unmatched address@hidden'.
./x509-api.texi:32: Unmatched address@hidden'.
./x509-api.texi:35: Unmatched address@hidden'.
./x509-api.texi:42: Unmatched address@hidden'.
./x509-api.texi:46: Unmatched address@hidden'.
./x509-api.texi:49: Unmatched address@hidden'.
./x509-api.texi:86: Unmatched address@hidden'.
./ocsp-api.texi:39: Unmatched address@hidden'.
./ocsp-api.texi:50: Unmatched address@hidden'.
./pgp-api.texi:21: Unmatched address@hidden'.
./pgp-api.texi:24: Unmatched address@hidden'.
./pgp-api.texi:25: Unmatched }.
./pgp-api.texi:30: Unmatched address@hidden'.
./pgp-api.texi:37: Unmatched address@hidden'.
./pgp-api.texi:40: Unmatched address@hidden'.
./pgp-api.texi:41: Unmatched }.
./pgp-api.texi:43: Unmatched address@hidden'.
./pkcs12-api.texi:14: Unmatched }.
./pkcs12-api.texi:67: Unmatched address@hidden'.
./pkcs11-api.texi:30: Unmatched address@hidden'.
./pkcs11-api.texi:38: Unmatched address@hidden'.
./abstract-api.texi:17: Unmatched }.
./abstract-api.texi:30: Unmatched address@hidden'.
./abstract-api.texi:36: Unmatched address@hidden'.
./abstract-api.texi:43: Unmatched address@hidden'.
./abstract-api.texi:44: Misplaced {.
./abstract-api.texi:44: Misplaced }.
./abstract-api.texi:49: Unmatched address@hidden'.
./abstract-api.texi:66: Unmatched address@hidden'.
./dane-api.texi:46: Unmatched address@hidden'.
./crypto-api.texi:18: Unmatched address@hidden'.
./crypto-api.texi:33: Unmatched address@hidden'.
./crypto-api.texi:36: Unmatched address@hidden'.
./compat-api.texi:36: Unmatched address@hidden'.
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-upgrade.texi:102:
Cross reference to nonexistent node `gnutls_privkey_sign_hash'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-upgrade.texi:88:
Cross reference to nonexistent node `gnutls_pubkey_verify_data2'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-upgrade.texi:84:
Cross reference to nonexistent node `gnutls_pubkey_verify_hash2'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-upgrade.texi:65:
Cross reference to nonexistent node `gnutls_certificate_get_issuer'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-upgrade.texi:53:
Cross reference to nonexistent node `gnutls_certificate_verify_peers2'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-upgrade.texi:50:
Cross reference to nonexistent node `gnutls_pubkey_verify_data'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-upgrade.texi:47:
Cross reference to nonexistent node `gnutls_transport_set_errno'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-upgrade.texi:41:
Cross reference to nonexistent node `gnutls_session_get_random'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-upgrade.texi:35:
Cross reference to nonexistent node `gnutls_record_check_pending'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-upgrade.texi:22:
Cross reference to nonexistent node `gnutls_record_check_pending'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-upgrade.texi:19:
Cross reference to nonexistent node `gnutls_init' (perhaps incorrect
sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-internals.texi:43:
Cross reference to nonexistent node `gnutls_handshake' (perhaps
incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-crypto.texi:62:
Cross reference to nonexistent node `gnutls_rnd' (perhaps incorrect
sectioning?).
./functions/gnutls_fingerprint.short:2: Cross reference to nonexistent
node `gnutls_fingerprint' (perhaps incorrect sectioning?).
./functions/gnutls_hash_fast.short:2: Cross reference to nonexistent
node `gnutls_hash_fast' (perhaps incorrect sectioning?).
./functions/gnutls_hash_get_len.short:2: Cross reference to
nonexistent node `gnutls_hash_get_len' (perhaps incorrect
sectioning?).
./functions/gnutls_hash_deinit.short:2: Cross reference to nonexistent
node `gnutls_hash_deinit' (perhaps incorrect sectioning?).
./functions/gnutls_hash_output.short:2: Cross reference to nonexistent
node `gnutls_hash_output' (perhaps incorrect sectioning?).
./functions/gnutls_hash.short:2: Cross reference to nonexistent node
`gnutls_hash' (perhaps incorrect sectioning?).
./functions/gnutls_hash_init.short:2: Cross reference to nonexistent
node `gnutls_hash_init' (perhaps incorrect sectioning?).
./functions/gnutls_hmac_fast.short:2: Cross reference to nonexistent
node `gnutls_hmac_fast' (perhaps incorrect sectioning?).
./functions/gnutls_hmac_get_len.short:2: Cross reference to
nonexistent node `gnutls_hmac_get_len' (perhaps incorrect
sectioning?).
./functions/gnutls_hmac_deinit.short:2: Cross reference to nonexistent
node `gnutls_hmac_deinit' (perhaps incorrect sectioning?).
./functions/gnutls_hmac_output.short:2: Cross reference to nonexistent
node `gnutls_hmac_output' (perhaps incorrect sectioning?).
./functions/gnutls_hmac.short:2: Cross reference to nonexistent node
`gnutls_hmac' (perhaps incorrect sectioning?).
./functions/gnutls_hmac_init.short:2: Cross reference to nonexistent
node `gnutls_hmac_init' (perhaps incorrect sectioning?).
./functions/gnutls_cipher_tag.short:2: Cross reference to nonexistent
node `gnutls_cipher_tag' (perhaps incorrect sectioning?).
./functions/gnutls_cipher_add_auth.short:2: Cross reference to
nonexistent node `gnutls_cipher_add_auth' (perhaps incorrect
sectioning?).
./functions/gnutls_cipher_deinit.short:2: Cross reference to
nonexistent node `gnutls_cipher_deinit' (perhaps incorrect
sectioning?).
./functions/gnutls_cipher_set_iv.short:2: Cross reference to
nonexistent node `gnutls_cipher_set_iv' (perhaps incorrect
sectioning?).
./functions/gnutls_cipher_decrypt2.short:2: Cross reference to
nonexistent node `gnutls_cipher_decrypt2' (perhaps incorrect
sectioning?).
./functions/gnutls_cipher_encrypt2.short:2: Cross reference to
nonexistent node `gnutls_cipher_encrypt2' (perhaps incorrect
sectioning?).
./functions/gnutls_cipher_init.short:2: Cross reference to nonexistent
node `gnutls_cipher_init' (perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-examples.texi:98:
Cross reference to nonexistent node `gnutls_handshake' (perhaps
incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1426:
Cross reference to nonexistent node `gnutls_session_channel_binding'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1412:
Cross reference to nonexistent node `gnutls_prf_raw' (perhaps
incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1401:
Cross reference to nonexistent node `gnutls_handshake' (perhaps
incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1393:
Cross reference to nonexistent node `gnutls_prf' (perhaps incorrect
sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1370:
Cross reference to nonexistent node `gnutls_sec_param_to_pk_bits'
(perhaps incorrect sectioning?).
./functions/gnutls_anon_set_server_dh_params.short:2: Cross reference
to nonexistent node `gnutls_anon_set_server_dh_params' (perhaps
incorrect sectioning?).
./functions/gnutls_certificate_set_dh_params.short:2: Cross reference
to nonexistent node `gnutls_certificate_set_dh_params' (perhaps
incorrect sectioning?).
./functions/gnutls_dh_params_import_pkcs3.short:2: Cross reference to
nonexistent node `gnutls_dh_params_import_pkcs3' (perhaps incorrect
sectioning?).
./functions/gnutls_dh_params_generate2.short:2: Cross reference to
nonexistent node `gnutls_dh_params_generate2' (perhaps incorrect
sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1361:
Cross reference to nonexistent node `gnutls_anon_set_server_dh_params'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1360:
Cross reference to nonexistent node `gnutls_certificate_set_dh_params'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1358:
Cross reference to nonexistent node `gnutls_dh_params_import_pkcs3'
(perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1357:
Cross reference to nonexistent node `gnutls_dh_params_generate2'
(perhaps incorrect sectioning?).
./functions/dane_strerror.short:2: Cross reference to nonexistent node
`dane_strerror' (perhaps incorrect sectioning?).
./functions/gnutls_tdb_set_store_commitment_func.short:2: Cross
reference to nonexistent node `gnutls_tdb_set_store_commitment_func'
(perhaps incorrect sectioning?).
./functions/gnutls_tdb_set_store_func.short:2: Cross reference to
nonexistent node `gnutls_tdb_set_store_func' (perhaps incorrect
sectioning?).
./functions/gnutls_tdb_set_verify_func.short:2: Cross reference to
nonexistent node `gnutls_tdb_set_verify_func' (perhaps incorrect
sectioning?).
./functions/gnutls_tdb_deinit.short:2: Cross reference to nonexistent
node `gnutls_tdb_deinit' (perhaps incorrect sectioning?).
./functions/gnutls_tdb_init.short:2: Cross reference to nonexistent
node `gnutls_tdb_init' (perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1298:
Cross reference to nonexistent node `gnutls_store_commitment' (perhaps
incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1268:
Cross reference to nonexistent node
`gnutls_session_ticket_enable_server' (perhaps incorrect sectioning?).
/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc//cha-gtls-app.texi:1266:
Cross reference to nonexistent node
`gnutls_session_ticket_key_generate' (perhaps incorrect sectioning?).
Too many errors!  Gave up.
Makefile:3623: recipe for target
'/usr/src/64bit/release/gnutls/gnutls-3.2.2-1/src/gnutls-3.2.2/doc/gnutls.info'
failed

</code>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]