diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-12-11 12:03:15 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-12-11 12:03:15 +0100 |
commit | 78b8b61b214051255d69348c192d764f29be3c70 (patch) | |
tree | fe525830fb3b1f854b03238170d556134c26aeaa /driver.c | |
parent | 1e4c557caf2a6775fd424f5c41b2e0159208a1b1 (diff) | |
download | fetchmail-78b8b61b214051255d69348c192d764f29be3c70.tar.gz fetchmail-78b8b61b214051255d69348c192d764f29be3c70.tar.bz2 fetchmail-78b8b61b214051255d69348c192d764f29be3c70.zip |
Allow linking Hesiod on Fedora 14 when compiled with g++.
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -36,7 +36,13 @@ #endif #include <netdb.h> #ifdef HAVE_PKG_hesiod +#ifdef __cplusplus +extern "C" { +#endif #include <hesiod.h> +#ifdef __cplusplus +} +#endif #endif #include <langinfo.h> |