diff options
author | Marcus Brinkmann <[email protected]> | 2002-08-20 23:15:03 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2002-08-20 23:15:03 +0000 |
commit | 5e69581a431d858eb88ff2d165d7ac566f0f32a9 (patch) | |
tree | d2134c4f6decb70d4b814235a6d307ce6ef6b5a7 | |
parent | 2002-08-21 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-5e69581a431d858eb88ff2d165d7ac566f0f32a9.tar.gz gpgme-5e69581a431d858eb88ff2d165d7ac566f0f32a9.zip |
2002-08-21 Marcus Brinkmann <[email protected]>
* ath.h: Update list of symbols that get a prefix: Rename the
ath_mutex_*_available symbols to ath_*_available.
Diffstat (limited to '')
-rw-r--r-- | gpgme/ChangeLog | 5 | ||||
-rw-r--r-- | gpgme/ath.h | 14 |
2 files changed, 7 insertions, 12 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 43dd2afb..63193cf8 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,5 +1,10 @@ 2002-08-21 Marcus Brinkmann <[email protected]> + * ath.h: Update list of symbols that get a prefix: Rename the + ath_mutex_*_available symbols to ath_*_available. + +2002-08-21 Marcus Brinkmann <[email protected]> + * stpcpy.c: New file from gnulib. * Makefile.am (assuan_libobjs): Remove jnlib. diff --git a/gpgme/ath.h b/gpgme/ath.h index c10da709..20e2fff2 100644 --- a/gpgme/ath.h +++ b/gpgme/ath.h @@ -36,22 +36,12 @@ #define ath_mutex_destroy ATH_PREFIX(ath_mutex_destroy) #define ath_mutex_lock ATH_PREFIX(ath_mutex_lock) #define ath_mutex_unlock ATH_PREFIX(ath_mutex_unlock) -#define ath_mutex_pthread_available \ - ATH_PREFIX(ath_mutex_pthread_available) -#define ath_mutex_pth_available \ - ATH_PREFIX(ath_mutex_pth_available) -#define ath_mutex_dummy_available \ - ATH_PREFIX(ath_mutex_dummy_available) #define ath_read ATH_PREFIX(ath_read) #define ath_write ATH_PREFIX(ath_write) #define ath_select ATH_PREFIX(ath_select) #define ath_waitpid ATH_PREFIX(ath_waitpid) -#define ath_mutex_pthread_available \ - ATH_PREFIX(ath_mutex_pthread_available) -#define ath_mutex_pthr_available \ - ATH_PREFIX(ath_mutex_pthr_available) -#define ath_mutex_dummy_available \ - ATH_PREFIX(ath_mutex_dummy_available) +#define ath_pthread_available ATH_PREFIX(ath_pthread_available) +#define ath_pth_available ATH_PREFIX(ath_pth_available) #endif |