| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- Index: src/hash.c
- --- src/hash.c.orig 2003-07-09 22:22:38.000000000 +0200
- +++ src/hash.c 2004-01-17 20:54:33.000000000 +0100
- @@ -60,7 +60,7 @@
- * hash table.
- */
- HASH
- -new_hash( ssize_t size )
- +new_hash( int size )
- {
- HASH this;
-
- @@ -76,7 +76,7 @@
- }
-
- void
- -hash_reset(HASH this, ssize_t size )
- +hash_reset(HASH this, int size )
- {
- this->size = 2;
- this->entries = 0;
- Index: src/hash.h
- --- src/hash.h.orig 2004-01-03 16:57:02.000000000 +0100
- +++ src/hash.h 2004-01-17 20:55:10.000000000 +0100
- @@ -29,7 +29,7 @@
-
- typedef struct HASH_T *HASH;
-
- -HASH new_hash(ssize_t size);
- +HASH new_hash(int size);
- void hash_add(HASH this, char *key, char *value);
- char *hash_get(HASH this, char *key);
- char **hash_get_keys(HASH this);
- Index: configure
- --- configure.orig 2005-10-11 19:31:39 +0200
- +++ configure 2006-05-16 09:04:36 +0200
- @@ -21075,7 +21075,9 @@
- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "yes" >/dev/null 2>&1; then
-
- +if test "${ac_cv_lib_dl_dlopen+set}" = set; then
- SSL_LIBS="-ldl $SSL_LIBS"
- +fi
- echo "$as_me:$LINENO: result: >= 0.9.8 (appropriate flag set)" >&5
- echo "${ECHO_T}>= 0.9.8 (appropriate flag set)" >&6
-
- @@ -21124,7 +21126,9 @@
- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "yes" >/dev/null 2>&1; then
-
- +if test "${ac_cv_lib_dl_dlopen+set}" = set; then
- SSL_LIBS="-ldl $SSL_LIBS"
- +fi
- echo "$as_me:$LINENO: result: >= 0.9.8 (appropriate flag set)" >&5
- echo "${ECHO_T}>= 0.9.8 (appropriate flag set)" >&6
-
|