Brian Silverman | 8649792 | 2018-02-10 19:28:39 -0500 | [diff] [blame] | 1 | 2018-02-09 Joshua Watt <JPEWhacker@gmail.com> |
| 2 | |
| 3 | * eu-config.h (FALLTHROUGH): New macro. |
| 4 | |
| 5 | 2017-10-16 Mark Wielaard <mark@klomp.org> |
| 6 | |
| 7 | * md5.{c,h}: Removed. |
| 8 | * sha1.{c,h}: Likewise. |
| 9 | * Makefile.am (libeu_a_SOURCES): Remove md5.c and sha1.c. |
| 10 | (noinst_HEADERS): Remove md5.h and sha1.h. |
| 11 | |
| 12 | 2017-08-18 Ulf Hermann <ulf.hermann@qt.io> |
| 13 | |
| 14 | * eu-config.h: Define attribute_packed to either |
| 15 | __attribute__((packed)) or __attribute__((packed, gcc_struct)). |
| 16 | |
| 17 | 2017-04-27 Ulf Hermann <ulf.hermann@qt.io> |
| 18 | |
| 19 | * eu-config.h: Define attribute_hidden to be empty if the compiler |
| 20 | doesn't support it. |
| 21 | |
| 22 | 2017-04-27 Ulf Hermann <ulf.hermann@qt.io> |
| 23 | |
| 24 | * Makefile.am: Use fpic_CFLAGS. |
| 25 | |
| 26 | 2017-07-18 Mark Wielaard <mark@klomp.org> |
| 27 | |
| 28 | * bpf.h: New file. |
| 29 | * Makefile.am (noinst_HEADERS): Add bpf.h |
| 30 | |
| 31 | 2017-05-05 Mark Wielaard <mark@klomp.org> |
| 32 | |
| 33 | * printversion.c (print_version): Update copyright year. |
| 34 | |
| 35 | 2017-04-20 Ulf Hermann <ulf.hermann@qt.io> |
| 36 | |
| 37 | * crc32.c: include config.h. |
| 38 | * system.h: Don't include config.h. |
| 39 | |
| 40 | 2017-02-16 Ulf Hermann <ulf.hermann@qt.io> |
| 41 | |
| 42 | * Makefile.am (libeu_a_SOURCES): Remove version.c, add printversion.c |
| 43 | (noinst_HEADERS): Add printversion.h |
| 44 | * version.c: Moved to printversion.c. |
| 45 | * printversion.c: New file, moved from version.c, |
| 46 | remove stdio.h, argp.h, system.h includes, |
| 47 | add printversion.h include. |
| 48 | * printversion.h: New file. |
| 49 | * system.h: Remove argp.h include, |
| 50 | (ARGP_PROGRAM_VERSION_HOOK_DEF, ARGP_PROGRAM_BUG_ADDRESS_DEF): Remove. |
| 51 | (print_version): Remove. |
| 52 | |
| 53 | 2017-02-15 Ulf Hermann <ulf.hermann@qt.io> |
| 54 | |
| 55 | * system.h: Provide mempcpy if it doesn't exist. |
| 56 | * xstrndup.c: Include system.h. |
| 57 | |
| 58 | 2017-02-15 Ulf Hermann <ulf.hermann@qt.io> |
| 59 | |
| 60 | * crc32_file.c: Use _SC_PAGESIZE rather than _SC_PAGE_SIZE. |
| 61 | |
| 62 | 2017-02-14 Ulf Hermann <ulf.hermann@qt.io> |
| 63 | |
| 64 | * color.h: New file. |
| 65 | * color.c: Include color.h. |
| 66 | * libeu.h: Remove color handling. |
| 67 | * Makefile.am (noinst_HEADERS): Add color.h. |
| 68 | |
| 69 | 2016-12-29 Luiz Angelo Daros de Luca <luizluca@gmail.com> |
| 70 | |
| 71 | * crc32_file.c: Include system.h. |
| 72 | * system.h: Remove semi-colon after TEMP_FAILURE_RETRY definition. |
| 73 | |
| 74 | 2016-12-24 Mark Wielaard <mark@klomp.org> |
| 75 | |
| 76 | * version.c: New source file. |
| 77 | * Makefile.am (libeu_a_SOURCES): Add version.c |
| 78 | * system.h (print_version): New function definition. |
| 79 | |
| 80 | 2016-10-11 Akihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp> |
| 81 | |
| 82 | * fixedsizehash.h (CONCAT): Use __CONCAT when available. |
| 83 | * system.h: Include config.h and errno.h. |
| 84 | (powerof2): Define if not already defined. |
| 85 | (TEMP_FAILURE_RETRY): Define when not yet defined. |
| 86 | |
| 87 | 2015-10-11 Akihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp> |
| 88 | |
| 89 | * Makefile.am (noinst_HEADERS): Add libeu.h. |
| 90 | * color.c: Remove system.h include, add libeu.h include. |
| 91 | * crc32_file.c: Likewise. |
| 92 | * fixedsizehash.h: Remove sys/param.h include. |
| 93 | * libeu.h: New file. |
| 94 | * system.h: Include sys/param.h. |
| 95 | (xmalloc, xcalloc, xrealloc, xstrdup, xstrndup, crc32, crc32_file, |
| 96 | color_argp, color_enum, color_*): Move definitions to libeu.h. |
| 97 | * xstrdup.c: Remove system.h include, add libeu.h include. |
| 98 | * xstrndup.c: Remove system.h include, add libeu.h and stdint.h |
| 99 | includes. |
| 100 | |
| 101 | 2015-09-24 Jose E. Marchesi <jose.marchesi@oracle.com> |
| 102 | |
| 103 | * Makefile.am (AM_CFLAGS): Use -fPIC instead of -fpic to avoid relocation |
| 104 | overflows in some platforms. |
| 105 | |
| 106 | 2015-09-22 Mark Wielaard <mjw@redhat.com> |
| 107 | |
| 108 | * dynamicsizehash.c: Remove old-style function definitions. |
| 109 | * md5.c: Likewise. |
| 110 | * sha1.c: Likewise. |
| 111 | * xmalloc.c: Likewise. |
| 112 | * xstrdup.c: Likewise. |
| 113 | * xstrndup.c: Likewise. |
| 114 | |
| 115 | 2015-05-31 Mark Wielaard <mjw@redhat.com> |
| 116 | |
| 117 | * eu-config.h (ALLOW_UNALIGNED): Define when ! CHECK_UNDEFINED. |
| 118 | |
| 119 | 2015-04-23 Max Filippov <jcmvbkbc@gmail.com> |
| 120 | |
| 121 | * eu-config.h: Use SYMBOL_VERSIONING as guard. |
| 122 | |
| 123 | 2014-01-17 Lei Zhang <thestig@google.com> |
| 124 | |
| 125 | * crc32_file.c: Include config.h. |
| 126 | |
| 127 | 2013-12-12 Josh Stone <jistone@redhat.com> |
| 128 | |
| 129 | * dynamicsizehash.c (lookup): Add a shortcut around division. |
| 130 | |
| 131 | 2013-04-30 Jan Kratochvil <jan.kratochvil@redhat.com> |
| 132 | |
| 133 | * eu-config.h (COMPAT_VERSION_NEWPROTO): New. Twice. |
| 134 | |
| 135 | 2013-04-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
| 136 | |
| 137 | * system.h (LE64, BE64): Move here the definitions from |
| 138 | libdwfl/link_map.c. |
| 139 | |
| 140 | 2013-04-24 Mark Wielaard <mjw@redhat.com> |
| 141 | |
| 142 | * Makefile.am: Use AM_CPPFLAGS instead of INCLUDES. |
| 143 | |
| 144 | 2012-10-09 Adam Markey <adam@etinternational.com> |
| 145 | |
| 146 | * system.h: Changed pwrite_retry, write_retry, and pread_retry to |
| 147 | handle case where not all data was read/written. |
| 148 | |
| 149 | 2012-10-08 Jan Kratochvil <jan.kratochvil@redhat.com> |
| 150 | |
| 151 | * system.h (eu_static_assert): New macro. |
| 152 | |
| 153 | 2012-01-21 Ulrich Drepper <drepper@gmail.com> |
| 154 | |
| 155 | * Makefile.am (libeu_a_SOURCES): Add color.c. |
| 156 | * system.h: Declare color_argp. Define color_enum. Declare |
| 157 | color_* variables. |
| 158 | * color.c: New file. |
| 159 | |
| 160 | 2011-10-02 Ulrich Drepper <drepper@gmail.com> |
| 161 | |
| 162 | * system.h: Declare __cxa_demangle. |
| 163 | |
| 164 | 2011-07-09 Roland McGrath <roland@hack.frob.com> |
| 165 | |
| 166 | * sha1.c (be64_copy): New function. |
| 167 | (sha1_finish_ctx): Use it. |
| 168 | * md5.c (le64_copy): New function. |
| 169 | (md5_finish_ctx): Use it. |
| 170 | * system.h (LE32, BE32): New macros, using <endian.h> and <byteswap.h>. |
| 171 | * md5.c (SWAP): Use LE32. |
| 172 | * sha1.c (SWAP): Use BE32. |
| 173 | |
| 174 | 2010-06-16 Roland McGrath <roland@redhat.com> |
| 175 | |
| 176 | * dynamicsizehash.h (HASHTYPE): New macro. |
| 177 | (struct): Use size_t for table sizes. |
| 178 | * dynamicsizehash.c: Likewise. Use HASHTYPE for hash values. |
| 179 | |
| 180 | 2010-02-15 Roland McGrath <roland@redhat.com> |
| 181 | |
| 182 | * Makefile.am: Use config/eu.am for common stuff. |
| 183 | |
| 184 | 2009-08-09 Roland McGrath <roland@redhat.com> |
| 185 | |
| 186 | * eu-config.h (OLD_VERSION, NEW_VERSION, COMPAT_VERSION): New macros. |
| 187 | |
| 188 | 2009-01-23 Roland McGrath <roland@redhat.com> |
| 189 | |
| 190 | * eu-config.h: Add multiple inclusion protection. |
| 191 | |
| 192 | 2009-01-17 Ulrich Drepper <drepper@redhat.com> |
| 193 | |
| 194 | * system.h (ARGP_PROGRAM_VERSION_HOOK_DEF): Define. |
| 195 | (ARGP_PROGRAM_BUG_ADDRESS_DEF): Define. |
| 196 | |
| 197 | 2009-01-10 Ulrich Drepper <drepper@redhat.com> |
| 198 | |
| 199 | * eu-config.h: Remove tls_key_t, key_create, getspecific, setspecific, |
| 200 | once_define, and once_execute macros. Use USE_LOCKS instead of |
| 201 | USE_TLS. |
| 202 | |
| 203 | 2008-08-25 Roland McGrath <roland@redhat.com> |
| 204 | |
| 205 | * eu-config.h [USE_TLS] (RWLOCK_CALL): New macro. |
| 206 | (rwlock_init, rwlock_fini, rwlock_rdlock, rwlock_wrlock, rwlock_unlock): |
| 207 | Use it. |
| 208 | |
| 209 | 2008-08-24 Roland McGrath <roland@redhat.com> |
| 210 | |
| 211 | * eu-config.h: New file. |
| 212 | * Makefile.am (noinst_HEADERS): Add it. |
| 213 | |
| 214 | 2008-02-01 Ulrich Drepper <drepper@redhat.com> |
| 215 | |
| 216 | * Makefile.am (libeu_a_SOURCES): Add sha1.c. |
| 217 | (noinst_HEADERS): Add sha1.h. |
| 218 | * sha1.c: New file. |
| 219 | * sha1.h: New file. |
| 220 | |
| 221 | 2008-01-31 Ulrich Drepper <drepper@redhat.com> |
| 222 | |
| 223 | * Makefile.am (libeu_a_SOURCES): Add md5.c. |
| 224 | (noinst_HEADERS): Add md5.h. |
| 225 | * md5.c: New file. |
| 226 | * md5.h: New file. |
| 227 | |
| 228 | 2006-04-04 Ulrich Drepper <drepper@redhat.com> |
| 229 | |
| 230 | * Makefile.am (libeu_a_SOURCES): We don't need xstrdup in the moment. |
| 231 | |
| 232 | 2005-08-28 Ulrich Drepper <drepper@redhat.com> |
| 233 | |
| 234 | * system.h: Define pwrite_retry, write_retry, and pread_retry. |
| 235 | |
| 236 | 2005-08-06 Ulrich Drepper <drepper@redhat.com> |
| 237 | |
| 238 | * Makefile.am (xmalloc_CFLAGS): Define only if !GPROF. |
| 239 | |
| 240 | 2005-05-03 Roland McGrath <roland@redhat.com> |
| 241 | |
| 242 | * crc32_file.c: New file. |
| 243 | * Makefile.am (libeu_a_SOURCES): Add it. |
| 244 | * system.h: Declare crc32_file. |
| 245 | |
| 246 | 2005-04-30 Ulrich Drepper <drepper@redhat.com> |
| 247 | |
| 248 | * Makefile.am: Use -ffunction-sections for xmalloc.c. |
| 249 | |
| 250 | 2005-02-15 Ulrich Drepper <drepper@redhat.com> |
| 251 | |
| 252 | * dynamicsizehash.c (lookup): Mark val parameter as possibly unused. |
| 253 | |
| 254 | 2005-02-06 Ulrich Drepper <drepper@redhat.com> |
| 255 | |
| 256 | * fixedsizehash.h: Mark unused parameters. Correct CLASS and |
| 257 | const order for fshash_find. |
| 258 | |
| 259 | * Makefile.am: Cleanup AM_CFLAGS handling. Add -Wunused -Wextra. |
| 260 | |
| 261 | 2005-02-05 Ulrich Drepper <drepper@redhat.com> |
| 262 | |
| 263 | * Makefile.am [MUDFLAP] (AM_CFLAGS): Add -fpic and -fmudflap. |
| 264 | |
| 265 | 2004-01-17 Ulrich Drepper <drepper@redhat.com> |
| 266 | |
| 267 | * Makefile.am: Support building with mudflap. |
| 268 | |
| 269 | 2003-09-22 Ulrich Drepper <drepper@redhat.com> |
| 270 | |
| 271 | * Makefile.am (AM_CFLAGS): Add -fpic. |
| 272 | |
| 273 | * Makefile.am (noinst_HEADERS): Add list.h. |
| 274 | * list.h: New file. |
| 275 | |
| 276 | 2003-08-11 Ulrich Drepper <drepper@redhat.com> |
| 277 | |
| 278 | * Moved to CVS archive. |