re PR libobjc/30731 (Warnings while compiling libobjc with the uleb128 changes)
[gcc.git] / libobjc / ChangeLog
1 2007-08-06 Andrew Pinski <pinskia@gmail.com>
2
3 PR libobjc/30731
4 * exception.c (parse_lsda_header): Use _uleb128_t/_sleb128_t instead
5 of _Unwind_Word for variables which are used in
6 read_uleb128/read_sleb128.
7 (PERSONALITY_FUNCTION): Likewise.
8
9 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
10
11 * aclocal.m4: Regenerated.
12
13 2007-06-03 Andrew Pinski <andrew_pinski@playstation.sony.com>
14
15 * configure.ac: Fix a typo in *-*-darwin clause.
16 * configure: Regenerated.
17
18 2007-06-02 H.J. Lu <hongjiu.lu@intel.com>
19
20 * configure.ac: Fix a typo.
21 * configure: Regenerated.
22
23 2007-06-02 Paolo Bonzini <bonzini@gnu.org>
24
25 * configure: Regenerate.
26
27 2007-06-01 Andrew Pinski <andrew_pinski@playstation.sony.com>
28
29 * Makefile.in: Replace all uses of libext with libsuffix.
30 * configure.ac: Likewise.
31 * configure: Regenerate.
32
33 Revert:
34 * Makefile.in: Remove all uses of $(libext).
35
36 2007-05-23 Andrew Pinski <andrew_pinski@playstation.sony.com>
37
38 * Makefile.in: Remove all uses of $(libext).
39
40 2007-05-23 Steve Ellcey <sje@cup.hp.com>
41
42 * configure: Regenerate.
43 * aclocal.m4: Regenerate.
44
45 2007-04-21 Andrew Ruder <andy@aeruder.net>
46
47 * sendmsg.c (__objc_get_forward_imp): Call
48 __objc_msg_forward2 for real.
49
50 2007-04-09 Andrew Ruder <andy@aeruder.net>
51
52 * sendmsg.c: Added __objc_msg_forward2, a hook that allows
53 external libraries to provide a function that returns the real
54 forwarding function based on both the selector and the receiver.
55 * objc/objc-api.h: Define __objc_msg_forward2.
56
57 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
58
59 * Makefile.in: Add dummy install-pdf target.
60
61 2007-02-18 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
62
63 * objc/objc-list.h (list_free): Add keyword 'inline' to avoid
64 unused warning.
65
66 2006-10-31 Geoffrey Keating <geoffk@apple.com>
67
68 * encoding.c (darwin_rs6000_special_round_type_align): New.
69
70 2006-10-14 Geoffrey Keating <geoffk@apple.com>
71
72 * Makefile.in: Use multi_basedir instead of toplevel_srcdir.
73 * configure.ac: Use multi.m4 from aclocal rather than custom
74 code. Use multi_basedir instead of toplevel_srcdir.
75 * aclocal.m4: Regenerate.
76 * configure: Regenerate.
77
78 2006-10-10 Brooks Moses <bmoses@stanford.edu>
79
80 * Makefile.in: Added empty "pdf" target.
81
82 2006-07-18 Paolo Bonzini <bonzini@gnu.org>
83
84 * configure: Regenerate.
85
86 2006-05-23 Carlos O'Donell <carlos@codesourcery.com>
87
88 * Makefile.in: Add install-html target. Add install-html to .PHONY
89
90 2006-02-21 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
91
92 PR libobjc/26309
93 * thr-objc.c (_XOPEN_SOURCE): Don't define on Tru64 UNIX.
94
95 2006-01-24 David Ayers <d.ayers@inode.at>
96
97 PR libobjc/9751
98 * gc.c (class_ivar_set_gcinvisible): Replace strncpy with memcpy
99 and insure the new strings are '\0' termintated.
100
101 2006-01-24 David Ayers <d.ayers@inode.at>
102
103 PR libobjc/13946
104 * configure.ac: Add include directives for --enable-objc-gc.
105 * Makefile.in: Ditto.
106 * configure: Regenerate.
107
108 * gc.c (__objc_class_structure_encoding): Increment the used bytes
109 instead of the local pointer to them.
110
111 2005-12-14 Andrew Pinski <pinskia@physics.uc.edu>
112
113 PR objc/25360
114 * objc/objc-api.c (_C_COMPLEX): New define.
115 * encoding.c (objc_sizeof_type): Handle _C_Complex.
116 (objc_alignof_type): Likewise.
117 (objc_skip_typespec): Likewise.
118
119 2005-12-15 David Ayers <d.ayers@inode.at>
120
121 PR libobjc/14382
122 * README (+load,+initialize): Fix documentation to reflect
123 intended and implemented semantics for +load and +initialize.
124
125 2005-12-12 Andrew Pinski <pinskia@physics.uc.edu>
126
127 * encoding.c (TYPE_FIELDS): Fix to skip over just _C_STRUCT_B and
128 the name.
129 (get_inner_array_type): Fix to skip over _C_ARY_B and size.
130 (rs6000_special_round_type_align): Update for the ABI fix.
131 (objc_layout_finish_structure): Correct the encoding which is passed to
132 ROUND_TYPE_ALIGN.
133
134 2005-12-11 Andrew Pinski <pinskia@physics.uc.edu>
135
136 PR libobjc/25347
137 * encoding.c (objc_sizeof_type): Don't handle _C_UNION_B special
138 but use the struct layout functions.
139 (objc_alignof_type): Likewise.
140 (objc_layout_structure): Handle _C_UNION_B also.
141 (objc_layout_structure_next_member): Likewise.
142 (objc_layout_finish_structure): Likewise.
143
144 2005-12-11 Andrew Pinski <pinskia@physics.uc.edu>
145
146 PR libobjc/25346
147 * objc/objc-api.h (_C_BOOL): New define.
148 * encoding.c (objc_sizeof_type): Handle _C_BOOL.
149 (objc_alignof_type): Likewise.
150 (objc_skip_typespec): Likewise.
151
152 2005-11-20 David Ayers <d.ayers@inode.at>
153
154 PR libobjc/19024
155 * objc/hash.h: Remove deprecated hash API.
156 * hash_compat.c: Remove.
157 * Makefile.in: Remove reference to hash_compat.c.
158
159 * configure.ac (VERSION): Bump library version to 2:0:0.
160 * configure: Regenerate.
161
162 2005-11-09 Alexandre Oliva <aoliva@redhat.com>
163
164 PR other/4372
165 * thr-objc.c (_XOPEN_SOURCE): Define.
166
167 2005-10-07 Ulrich Weigand <uweigand@de.ibm.com>
168
169 PR libobjc/23612
170 * objc/objc-api.h (struct objc_ivar): Move definition to
171 global scope.
172
173 2005-09-04 Andrew Pinski <pinskia@physics.uc.edu>
174 Rasmus Hahn <rassahah@neofonie.de>
175
176 PR libobjc/23108
177 * archive.c (objc_write_type): Correct the element offset.
178 (objc_read_type): Likewise.
179
180 2005-08-17 Kelley Cook <kcook@gcc.gnu.org>
181
182 * All files: Update FSF address.
183
184 2005-08-13 Marcin Koziej <creep@desk.pl>
185 Andrew Pinski <pinskia@physics.uc.edu>
186
187 PR libobjc/22492
188 * exception.c (PERSONALITY_FUNCTION): Fix the PC with finally.
189
190 2005-08-13 Andrew Pinski <pinskia@physics.uc.edu>
191
192 * Makefile.in (extra_ldflags_libobjc): New.
193 (libobjc$(libext).la): Add extra_ldflags_libobjc to the link line.
194 (libobjc_gc$(libext).la): Likewise.
195 * configure.ac (extra_ldflags_libgfortran): Set for *-darwin* to
196 "-Wl,-single_module".
197 * configure: Regenerate.
198 * linking.m (_objcInit): Remove.
199
200 2005-07-26 Andrew Pinski <pinskia@physics.uc.edu>
201
202 PR libobjc/22606
203 * Makefile.in (ALL_CFLAGS): Add -fexceptions.
204
205 2005-06-08 David Ayers <d.ayers@inode.at>
206
207 * objc/NXConstStr.h, objc/Object.h, objc/Protocol.h,
208 objc/encoding.h, objc/hash.h, objc/objc-api.h,
209 objc/runtime.h, objc/sarray.h, objc/thr.h,
210 objc/typedstream.h: Do not include Objective-C headers as
211 system headers.
212
213 2005-06-07 David Ayers <d.ayers@inode.at>
214
215 * archive.c, init.c, selector.c: Include hash.h.
216 * archive.c, class.c, encoding.c, gc.c, hash.c, hash_compat.c,
217 init.c, misc.c, nil_method.c, objects.c, sarray.c, selector.c,
218 sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c, thr-mach.c,
219 thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c, thr-rtems.c,
220 thr-single.c, thr-solaris.c, thr-vxworks.c, thr-win32.c, thr.c:
221 Include Objective-C headers with quotes and objc/ directory
222 prefix.
223
224 2005-05-19 Richard Henderson <rth@redhat.com>
225
226 * exception.c: Revert last change.
227
228 2005-05-19 David Ayers <d.ayers@inode.at>
229
230 * exception.c: Include tsystem.h for unwind.h.
231
232 2005-05-09 Mike Stump <mrs@apple.com>
233
234 * configure: Regenerate.
235
236 2005-04-12 Mike Stump <mrs@apple.com>
237
238 * configure: Regenerate.
239
240 2005-03-21 Zack Weinberg <zack@codesourcery.com>
241
242 * Makefile.in: Set gcc_version here.
243 * configure.ac: Do not invoke TL_AC_GCC_VERSION. Adjust quoting
244 in definition of toolexeclibdir so that $(gcc_version) is expanded
245 by the Makefile.
246 * aclocal.m4, configure: Regenerate.
247
248 2005-03-03 David Ayers <d.ayers@inode.at>
249
250 * objc/hash.h (OBJC_IGNORE_DEPRECATED_API): Update deprecated
251 version reference. Correct typo.
252
253 2005-03-02 David Ayers <d.ayers@inode.at>
254
255 PR libobjc/19024
256 * Makefile.in (OBJS): Add hash_compat.lo.
257 (OBJS_GC): Add hash_compat_gc.lo.
258 (hash_compat_gc.lo): New target and rule.
259 * objc/hash.h (hash_new, hash_delete, hash_add, hash_remove)
260 (hash_next, hash_value_for_key, hash_is_key_in_hash)
261 (hash_ptr, hash_string, compare_ptrs, compare_strings): Prefix
262 with objc_. Add deprecated non prefixed inlined versions.
263 (OBJC_IGNORE_DEPRECATED_API): New macro to hide deprecated
264 declarations.
265 * hash.c (hash_new, hash_delete, hash_add, hash_remove, hash_next)
266 (hash_value_for_key, hash_is_key_in_hash): Prefix with objc_ and
267 update callers.
268 * hash_compat.c: New file.
269 * archive.c: Update callers.
270 * init.c: Likewise.
271 * selector.c: Likewise.
272 * libobjc.def: Add objc_ versions of hash functions.
273
274 2005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
275
276 PR libobjc/20252
277 * Makefile.in (GTHREAD_FLAGS): Remove.
278 (ALL_CFLAGS): Remove usage of GTHREAD_FLAGS.
279 * thr-objc.c: Include config.h.
280 * configure.ac: Instead of looking at GCC's makefile, figure out if
281 GTHREAD_FLAGS should be defined by looking at the `thread model'
282 of the current gcc.
283 * configure: Regenerate.
284 * config.h.in: Regenerate.
285
286 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
287
288 PR bootstrap/17383
289 * configure.ac: Call GCC_TOPLEV_SUBDIRS.
290 (Determine CFLAGS for gthread): Use $host_subdir.
291 * configure: Regenerate.
292 * Makefile.in (host_subdir): New.
293 (INCLUDES): Use it.
294
295 2004-12-20 Andrew Pinski <pinskia@physics.uc.edu>
296
297 PR libobjc/12035
298 * gc.c: Remove definition of LOGWL, modWORDSZ, and divWORDSZ since
299 they are not used.
300 Include limits.h and stdlib.h.
301 Define BITS_PER_WORD.
302
303 2004-12-12 Alexander Malmberg <alexander@malmberg.org>
304
305 * selector.c (__objc_init_selector_tables): Add missing void to
306 definition.
307
308 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
309
310 * configure.ac: Use TL_AC_GCC_VERSION to set gcc_version.
311 * configure, aclocal.m4: Regenerate.
312
313 2004-11-29 Kelley Cook <kcook@gcc.gnu.org>
314
315 * configure: Regenerate for libtool change.
316
317 2004-11-25 Kelley Cook <kcook@gcc.gnu.org>
318
319 * configure: Regenerate for libtool reversion.
320
321 2004-11-24 Kelley Cook <kcook@gcc.gnu.org>
322
323 * configure: Regenerate for libtool change.
324
325 2004-11-24 Kelley Cook <kcook@gcc.gnu.org>
326
327 * aclocal.m4, config.h.in: Regenerate.
328
329 2004-10-08 Mike Stump <mrs@apple.com>
330 Andrew Pinski <pinskia@physics.uc.edu>
331
332 * aclocal.m4: Rename to ...
333 * acinclude.m4: here and also use m4_include instead of sinclude.
334 * aclocal.m4: Regenerate.
335 * configure: Regenerate.
336 * configure.ac: Add AM_MAINTAINER_MODE and AM_PROG_CC_C_O.
337 * Makefile.in (configure): Add @MAINT@ infront of configure.ac
338
339 2004-10-08 Andrew Pinski <pinskia@physics.uc.edu>
340
341 * archive.c: Fix all the warnings about passing unsigned char*
342 to char* and the other way too.
343
344 2004-09-16 Andrew Pinski <pinskia@physics.uc.edu>
345
346 PR libobjc/16448
347 * exception.c: Include config.h
348 (objc_exception_throw): Change _GLIBCXX_SJLJ_EXCEPTIONS to
349 SJLJ_EXCEPTIONS.
350 * configure.ac: Find out what exception handling code we use.
351 * configure: Regenerate.
352 * config.h.in: New file, regenerate.
353
354 2004-09-16 Andrew Pinski <apinski@apple.com>
355
356 * encoding.c (ALTIVEC_VECTOR_MODE): Define a bogus macro.
357
358 2004-08-28 Nathanael Nerode <neroden@gcc.gnu.org>
359
360 * configure.ac: Switch from _GCC_TOPLEV_NONCANONICAL_TARGET to
361 ACX_NONCANONICAL_TARGET.
362 * configure: Regenerate.
363
364 2004-08-13 Ziemowit Laski <zlaski@apple.com>
365
366 * objc/sarray.h: Hoist include of assert.h near the top of file,
367 and mark the remainder of the file 'extern "C"'.
368
369 2004-08-13 Andrew Pinski <pinskia@physics.uc.edu>
370
371 * objc/Object.h: Move includes out of extern "C" blocks.
372 * objc/encoding.h: Likewise.
373 * objc/hash.h: Likewise.
374 * objc/objc-api.h: Likewise.
375 * objc/runtime.h: Likewise.
376 * objc/sarray.h: Likewise.
377 * objc/typedstream.h: Likewise.
378
379 2004-08-12 Ziemowit Laski <zlaski@apple.com>
380
381 * objc/NXConstStr.h: Update copyright date; bracket with
382 'extern "C"' for C++ use; make include syntax consistent
383 by using <...> instead of "..."; hoist <objc/...> includes
384 above the 'extern "C"' block.
385 * objc/Object.h: Likewise.
386 * objc/Protocol.h: Likewise.
387 * objc/encoding.h: Likewise.
388 * objc/hash.h: Likewise.
389 * objc/runtime.h: Likewise.
390 * objc/sarray.h: Likewise.
391 * objc/thr.h: Likewise.
392 * objc/typedstream.h: Likewise.
393 * objc/objc-api.h: Add 'extern "C"' block for C++ use.
394 (objc_static_instances): For C++ case, do away with
395 zero-sized array.
396 (objc_method): Hoist definition to file scope.
397 (_objc_load_callback, _objc_object_alloc, class_get_class_method,
398 class_get_instance_method, class_create_instance,
399 class_get_class_name, class_get_instance_size,
400 class_get_meta_class, class_get_super_class, class_get_version,
401 class_is_class, class_is_meta_class, class_set_version,
402 class_get_gc_object_type, class_ivar_set_gcinvisible,
403 get_imp): Rename 'class' parameter to '_class'.
404 * objc/objc-list.h: Add 'extern "C"' block for C++ use.
405 * objc/objc.h: Update copyright date.
406 (arglist_t): Provide a union tag.
407
408 2004-07-22 Andrew Pinski <pinskia@physics.uc.edu>
409
410 * thr.c (__objc_thread_detach_function): Do not mark as volatile
411 but instead use the attribute noreturn.
412
413 2004-06-28 Zack Weinberg <zack@codesourcery.com>
414
415 * encoding.c: Rename target_flags with a #define to avoid
416 conflict with a prior declaration.
417
418 2004-06-24 Andrew Pinski <apinski@apple.com>
419
420 * objc/encoding.h: Wrap the functions with extern "C" for C++
421 mode.
422 * objc/hash.h: Likewise.
423 * objc/objc-api.h: Likewise.
424 * objc/objc-list.h: Likewise.
425 * objc/runtime.h: Likewise.
426 * objc/sarray.h: Likewise.
427 * objc/thr.h: Likewise.
428 * objc/typedstream.h: Likewise.
429
430
431 2004-06-21 Nick Clifton <nickc@redhat.com>
432
433 * encoding.c (BITS_PER_UNIT): Define if a definition is not
434 provided.
435
436 2004-06-20 Alexander Malmberg <alexander@malmberg.org>
437
438 * Makefile.in (exception.lo): Remove $(OBJC_GCFLAGS).
439 (exception_gc.lo): New.
440 (OBJS_GC): Add exception_gc.lo.
441
442 2004-06-17 Richard Henderson <rth@redhat.com>
443
444 * exception.c: New file.
445 * Makefile.in (exception.lo): New.
446 (OBJS): Add it.
447
448 2004-06-14 Andrew Pinski <pinskia@physics.uc.edu>
449
450 * linking.m (_objcInit): New empty function
451 for Darwin only.
452
453 2004-06-11 Andrew Pinski <pinskia@physics.uc.edu>
454
455 * configure.ac: Support --enable-shared=libobjc.
456 * configure: Regenerate.
457
458 PR libobjc/15901
459 * configure.ac: Do not disable shared by default.
460 * configure: Regenerate.
461
462 2004-06-03 Nicola Pero <n.pero@mi.flashnet.it>
463
464 * Protocol.m ([-isEqual:]): Small optimizations returning
465 immediately if the argument is equal to self, and accessing
466 the argument's name directly if it's a protocol.
467
468 2004-06-03 David Ayers <d.ayers@inode.at>
469
470 * Protocol.m ([-isEqual:]): Test the class of the argument.
471
472 2004-05-25 Andrew Pinski <pinskia@physics.uc.edu>
473
474 * configure.ac (includedir): Rename to ...
475 (includedirname).
476 * Makefile.in: s/includedir/includedirname/.
477
478 PR target/11572
479 * configure.ac (includedir): Set to "include"
480 except for Darwin.
481 (libext) Set to empty except for Darwin.
482 * configure: Regenerate
483 * Makefile.in: s/libobjc.la/libobjc$(libext).la/g.
484 s/include/$(includedir)/g.
485
486 2004-05-25 Daniel Jacobowitz <drow@false.org>
487
488 * Makefile.in: Add .NOEXPORT.
489
490 2004-05-25 Andrew Pinski <pinskia@physics.uc.edu>
491
492 Merge from the libobjc-branch
493 2004-02-09 Andrew Pinski <pinskia@physics.uc.edu>
494
495 * Makefile.in (OBJC_H): Change objc-deps.h to objc-decls.h.
496
497 2004-02-03 Andrew Pinski <pinskia@physics.uc.edu>
498
499 * Makefile.in (OBJC_H): Add objc-deps.h.
500
501 2004-01-27 Nicola Pero <n.pero@mi.flashnet.it>
502
503 * Protocol.m ([-conformsTo:]): If the argument is nil, return NO.
504 ([-hash], [-isEqual:]): New methods.
505
506 2004-01-27 Richard Frith-Macdonald <rfm@gnu.org>
507
508 * sarray.c (sarray_free): Add a better comment.
509
510 2004-01-27 Adam Fedor <fedor@gnu.org>
511
512 * hash.c (hash_add): Cast cachep to int.
513 * selector.c (__sel_register_typed_name): Cast
514 soffset_decode to int.
515
516 2004-01-27 Alexander Malmberg <alexander@malmberg.org>
517
518 * selector.c: Rename register_selectors_from_list to
519 __objc_register_selectors_from_list. Update caller.
520 (__objc_register_selectors_from_list): Lock __objc_runtime_mutex
521 while registering selectors. Use __sel_register_typed_name instead
522 of sel_register_typed_name. Check for NULL method_name:s.
523 (pool_alloc_selector): New function.
524 (__sel_register_typed_name): Use pool_alloc_selector to allocate
525 selector structures.
526 * sendmsg.c (class_add_method_list): Use
527 __objc_register_selectors_from_list.
528 * objc/runtime.h: Add __objc_register_selectors_from_list.
529
530 2004-01-25 Adam Fedor <fedor@gnu.org>
531 Nicola Pero <n.pero@mi.flashnet.it>
532 Andrew Pinski <pinskia@physics.uc.edu>
533
534 * objc/objc-decls.h: New file.
535 * objc/objc-api.h (_objc_lookup_class): Mark as export.
536 (_objc_load_callback): Likewise.
537 (_objc_object_alloc): Likewise.
538 (_objc_object_copy): Likewise.
539 (_objc_object_dispose): Likewise.
540
541 2004-01-25 Andrew Pinski <pinskia@physics.uc.edu>
542
543 * archive.c: s/__inline__/inline
544 * sendmsg.c: Likewise.
545
546 * encoding.c: Remove FIXME about the warning
547 about unused variable.
548 * sendmsg.c: Add a FIXME comment saying that
549 this should be using libffi.
550
551 * Makefile.in (LIBTOOL): Use @LIBTOOL@ now as it works.
552
553
554 2004-05-13 Andrew Pinski <pinskia@physics.uc.edu>
555
556 * archive.c (objc_read_class): Initialize class_name.
557 (objc_read_selector): Initialize selector_name.
558
559 2004-05-09 Richard Sandiford <rsandifo@redhat.com>
560
561 * Makefile.in (toolexecdir): Remove trailing space.
562
563 2004-04-15 Nathanael Nerode <neroden@gcc.gnu.org>
564
565 PR libobjc/14948
566 * configure.ac: De-precious CC so multilibs work.
567 * configure: Regenerate.
568
569 2004-04-14 Nathanael Nerode <neroden@gcc.gnu.org>
570
571 * configure.ac: Restore toolexecdir.
572 * Makefile.in: Restore toolexecdir.
573 * configure: Regenerate.
574
575 2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
576
577 * configure.ac: Remove (unused) glibcpp_prefixdir.
578 * configure: Regenerate.
579
580 * configure.in: Rename to configure.ac.
581 * Makefile.in: Update to match.
582
583 * Makefile.in: Remove toolexecdir, glibcpp_toolexecdir (unused).
584 Replace glibcpp_toolexeclibdir with toolexeclibdir.
585 * configure.in: Remove glibcpp_toolexecdir (unused).
586 Replace glibcpp_toolexeclibdir with toolexeclibdir. Don't generate
587 config.h or stamp-h (unused). Move one comment to the right place.
588 * configure: Regenerate.
589 * config.h.in: Remove (unused).
590
591 * config.h.in: Regenerate with autoheader.
592
593 * Makefile.in: Remove (unused) gcc_version_trigger.
594 * configure.in: Remove (unused) glibcpp_builddir. Don't AC_SUBST
595 gcc_version_trigger.
596 * configure: Regenerate.
597
598 * configure.in: Switch to modern style for AC_INIT, AC_OUTPUT.
599 Sort file into sections. Remove dnl where appropriate. Fix
600 other style issues.
601 * configure: Regenerate.
602
603 * configure.in: Replace old AC_PROG_CC hack with new one.
604 Define toplevel_srcdir in terms of srcdir, not top_srcdir (there
605 are no subdirectory output files, so this is fine). Change prereq
606 to autoconf 2.59.
607 * aclocal.m4: Include ../config/no-executables.m4.
608 * configure: Regenerate with autoconf 2.59.
609
610 * configure.in: Improve comments on gthread_cflags. Improve m4
611 quotation, and replace 'if test' with 'case', for --enable-objc-gc.
612 * configure: Regenerate.
613
614 * configure.in: Move PACKAGE and VERSION settings up top. Remove
615 unused call to AC_PROG_LN_S. Default RANLIB to ':'. Remove
616 redundant checks for values of RANLIB, AR, INSTALL.
617 * configure: Regenerate.
618
619 * configure.in: Clean up handling of
620 --enable-version-specific-runtime-libs and related variables;
621 replace 'if test' with 'case' where reasonable. Fix comments.
622 Remove useless libstdcxx_interface.
623 * configure: Regenerate.
624
625 * configure.in: Use _GCC_TOPLEV_NONCANONICAL_TARGET.
626 Replace uses of target_alias with target_noncanonical.
627 * aclocal.m4: Include ../config/acx.m4.
628 * configure: Regenerate.
629 * Makefile.in: Replace uses of target_alias with target_noncanonical.
630 Fix copyright statement.
631
632 * configure.in: Hand-inline bulky, confusing macros from
633 aclocal.m4. Replace references to "GNU Objective C" with "GCC".
634 Update copyright notice. Remove stuff for automake, which isn't
635 used in this directory. Remove emacs local variables.
636 * aclocal.m4: Remove hand-inlined macros. Update copyright notice.
637 * configure: Regenerate.
638
639 2004-03-16 Manfred Hollstein <mh@suse.com>
640
641 * Makefile.in, configure.in, configure: Update copyright years.
642
643 2004-03-15 Manfred Hollstein <mh@suse.com>
644
645 * Makefile.in (LIBOBJC_VERSION, LIBOBJC_GC_VERSION): Use
646 definition from configure.in.
647 * configure.in (PACKAGE): Add definition.
648 (VERSION): Add definition; substitute it in output files.
649 * configure: Re-generate.
650
651 2004-03-05 Ziemowit Laski <zlaski@apple.com>
652
653 * objc/hash.h (hash_string, compare_strings):
654 Add type-casts to make Objective-C++ happy.
655 * objc/typedstream.h (objc_get_stream_class_version):
656 Rename parameter from 'class' to 'class_name' to make
657 Objective-C++ happy.
658
659 2004-03-01 Michael Matz <matz@suse.de>
660
661 * Makefile.in (ALL_CFLAGS): Add -fno-strict-aliasing.
662
663 2004-02-06 Ziemowit Laski <zlaski@apple.com>
664
665 * objc/objc-api.h (objc_super): The 'class' field shall
666 be named 'super_class' #ifdef __cplusplus.
667
668 2004-01-17 Andrew Pinski <pinskia@physics.uc.edu>
669
670 PR target/10781
671 * encoding.c (rs6000_special_round_type_align): Define.
672
673 2004-01-14 Adam Fedor <fedor@gnu.org>
674
675 PR libobjc/12155
676 * selector.c (__objc_register_instance_methods_to_class): Free
677 new_list if not used.
678
679 2004-01-09 Andrew Ruder <aeruder@ksu.edu>
680
681 PR libobjc/11904
682 * sarray.c (sarray_free): Free array->is_copy_of latter.
683
684 2003-12-01 Zack Weinberg <zack@codesourcery.com>
685
686 PR 11433
687 * Protocol.m (descriptionForInstanceMethod): Don't dereference
688 instance_methods if it's NULL.
689 (descriptionForClassMethod): Likewise for class_methods.
690
691 2003-10-24 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
692
693 * Makefile.in (runtime-info.h): Remove -Wp.
694
695 2003-10-21 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
696
697 * Makefile.in (CC1OBJ): Remove.
698 (runtime-info.h): Invoke $(CC) so all MULTIFLAGS are handled
699 correctly.
700 Use .m extension for temporary file.
701 Remove assembler temp file.
702
703 2003-10-20 Joseph S. Myers <jsm@polyomino.org.uk>
704
705 * objc/hash.h (hash_string): Don't use a cast as an lvalue.
706
707 2003-10-17 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
708
709 * Makefile.in (runtime-info.h): Use MULTIFLAGS.
710
711 2003-09-09 Alan Modra <amodra@bigpond.net.au>
712
713 * configure: Regenerate.
714
715 2003-08-27 Alexander Malmberg <alexander@malmberg.org>
716
717 * Makefile.in, aclocal.m4: Update to $(libdir)/gcc/ instead of
718 (libdir)/gcc-lib/ when installing.
719 * configure: Regenerate.
720
721 Thu Jul 10 10:27:43 2003 Nicola Pero <n.pero@mi.flashnet.it>
722
723 libobjc/9969
724 * sendmsg.c (get_imp): Fixed rare threading problem.
725 (__objc_responds_to): Similar fixes.
726 (objc_msg_lookup): Similar fixes.
727 (__objc_init_install_dtable): Lock the runtime before checking if the
728 table is installed.
729
730 2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
731
732 * hash.c, init.c, libobjc.def, libobjc_entry.c, linking.m,
733 makefile.dos, misc.c, nil_method.c, objects.c, sarray.c,
734 selector.c, sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c,
735 thr-mach.c, thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c,
736 thr-rtems.c, thr-single.c, thr-solaris.c, thr-vxworks.c,
737 thr-win32.c, thr.c: Replace "GNU CC" with "GCC".
738 * Makefile.in, NXConstStr.m, Object.m, Protocol.m, archive.c,
739 class.c, encoding.c, gc.c, objc/NXConstStr.h, objc/Object.h,
740 objc/Protocol.h, objc/encoding.h, objc/hash.h, objc/objc-api.h,
741 objc/objc-list.h, objc/objc.h, ocjc/runtime.h, objc/sarray.h,
742 objc/thr.h, objc/typedstream.h: Replace "GNU CC" with "GCC".
743
744 Tue May 13 14:56:03 2003 Richard Frith-Macdonald <rfm@gnu.org>
745 Nicola Pero <n.pero@mi.flashnet.it>
746
747 libobjc/10742
748 * init.c (class_superclass_of_class): New function.
749 (create_tree_of_subclasses_inherited_from): Use it.
750 (__objc_tree_insert_class): Likewise.
751 (class_is_subclass_of_class): Likewise.
752
753 2003-04-11 David Chad <davidc@freebsd.org>
754 Loren J. Rittle <ljrittle@acm.org>
755
756 libobjc/8562
757 * objc/hash.h (hash_string): Constify correctly.
758 (compare_ptrs): Use direct compare.
759 * objc/objc-list.h (list_nth): Rename index to indx to avoid shadow.
760 * objc/sarray.h: Global rename index to indx to avoid shadow.
761
762 2003-03-12 Andreas Schwab <schwab@suse.de>
763
764 * aclocal.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Avoid trailing /. in
765 glibcpp_toolexeclibdir.
766 * configure: Rebuilt.
767
768 2003-02-20 Alexandre Oliva <aoliva@redhat.com>
769
770 * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
771 config.status.
772 * configure: Rebuilt.
773
774 2003-01-27 Alexandre Oliva <aoliva@redhat.com>
775
776 * aclocal.m4 (glibcpp_toolexeclibdir): Instead of
777 $(MULTISUBDIR), use `$CC -print-multi-os-directory`, unless
778 version_specific_libs is enabled.
779 * configure: Rebuilt.
780
781 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
782
783 * Makefile.in (FLAGS_TO_PASS): Also pass DESTDIR.
784 (install-libs, install-headers): Prepend $(DESTDIR) to
785 destination paths in all (un)installation commands.
786
787 2002-12-02 Zack Weinberg <zack@codesourcery.com>
788
789 * thr-objc.c: Include coretypes.h and tm.h.
790
791 2002-12-01 Zack Weinberg <zack@codesourcery.com>
792
793 * encoding.c, sendmsg.c: Include coretypes.h and tm.h.
794
795 2002-11-26 Nathanael Nerode <neroden@gcc.gnu.org>
796
797 * configure.in: Remove skip-this-dir support.
798 * configure: Regenerate.
799
800 2002-09-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
801
802 * Makefile.in (all): Fix multilib parallel build.
803
804 Thu Sep 12 12:44:37 2002 Nicola Pero <n.pero@mi.flashnet.it>
805
806 * sendmsg.c (nil_method): Declare not to take a variable number of
807 args.
808 (objc_msg_lookup): Cast nil_method to IMP before returning it.
809 (objc_msg_lookup_super): The same.
810
811 2002-09-10 Jan Hubicka <jh@suse.cz>
812
813 * nil_method.c (nil_method): No longer defined with variable
814 arguments.
815
816 2002-07-02 Rodney Brown <rbrown64@csc.com.au>
817
818 * objc/encoding.h: Fix formatting.
819 * objc/hash.h: Likewise.
820 * objc/objc-api.h: Likewise.
821 * objc/runtime.h: Likewise.
822 * objc/thr.h: Likewise.
823 * archive.c: Likewise.
824 * class.c: Likewise.
825 * encoding.c: Likewise.
826 * gc.c: Likewise.
827 * hash.c: Likewise.
828 * init.c: Likewise.
829 * misc.c: Likewise.
830 * nil_method.c: Likewise.
831 * objects.c: Likewise.
832 * sarray.c: Likewise.
833 * selector.c: Likewise.
834 * sendmsg.c: Likewise.
835 * thr-mach.c: Likewise.
836 * thr.c: Likewise.
837
838 2002-06-25 DJ Delorie <dj@redhat.com>
839
840 * aclocal.m4 (GLIBCPP_CONFIGURE): Split out
841 GLIBCPP_TOPREL_CONFIGURE.
842 * configure.in: Call it before AC_CANONICAL_SYSTEM.
843 * configure: Regenerate.
844
845 2002-06-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
846
847 * Object.m (forward, read, write): Fix unused parameter warnings.
848 * encoding.c: Include <stdlib.h>.
849 (target_flags): Mark with attribute unused.
850 (atoi): Delete.
851 * runtime.h (__objc_selector_max_index): Change to unsigned int.
852 (__objc_generate_gc_type_description): Prototype.
853 * selector.c (__objc_selector_max_index): Change to unsigned int.
854
855 Mon Jun 17 18:37:42 2002 Nicola Pero <n.pero@mi.flashnet.it>
856
857 * sendmsg.c (__objc_get_forward_imp): Fix warning by making sure
858 we always have a return value: if __objc_msg_forward does not
859 supply a forwarding implementation, return the default
860 __builtin_apply based one.
861
862 2002-06-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
863
864 * Object.m: Fix signed/unsigned warning.
865 * Protocol.m: Likewise.
866 * archive.c: Always include stdlib.h.
867 (objc_read_short, objc_read_unsigned_short, objc_read_int,
868 objc_read_long, __objc_read_nbyte_uint, __objc_read_nbyte_ulong):
869 Fix signed/unsigned warning.
870 (objc_write_type, objc_read_type, objc_write_types,
871 objc_read_types): Ensure ctype 8-bit safety.
872 (__objc_no_write, __objc_no_read): Mark unused parameters.
873 * class.c (class_table_setup): Specify void arg.
874 * encoding.c (atoi, objc_sizeof_type, objc_alignof_type,
875 objc_skip_typespec, objc_skip_offset,
876 objc_layout_structure_next_member): Ensure ctype 8-bit safety.
877 (objc_layout_structure_next_member): Ensure variables are
878 initialized.
879 * gc.c (__objc_generate_gc_type_description,
880 class_ivar_set_gcinvisible): Mark unused parameters.
881 * init.c (__objc_send_load, __objc_destroy_class_tree_node): Mark
882 unused parameters.
883 (__objc_init_protocols) Fix signed/unsigned warning.
884 * nil_method.c (nil_method): Mark unused parameters.
885 * thr.h (objc_thread_callback): Specify void arg.
886 * sarray.c (sarray_new, sarray_realloc, sarray_free): Fix
887 signed/unsigned warning.
888 (sarray_free): Fix formatting.
889 * selector.c (sel_types_match): Ensure ctype 8-bit safety.
890 * sendmsg.c (__objc_init_install_dtable) Mark unused parameters.
891
892 2002-06-09 Andreas Jaeger <aj@suse.de>
893
894 * encoding.c (objc_layout_structure_next_member): Remove unused
895 variable.
896
897 2002-05-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
898
899 * Makefile.in (SHELL): Set to @SHELL@.
900 (WARN_CFLAGS): New.
901 (ALL_CFLAGS): Add $(WARN_CFLAGS).
902
903 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
904
905 * aclocal.m4: Allow for PWDCMD to override hardcoded pwd.
906 * configure: Regenerate.
907
908 2002-05-08 Alexandre Oliva <aoliva@redhat.com>
909
910 * configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
911 script entry, and set LD to it when configuring multilibs.
912 * configure: Rebuilt.
913
914 2002-04-19 David O'Brien <obrien@FreeBSD.org>
915
916 * encoding.c (MAX, MIN, ROUNDING): #undef before defining.
917
918 2002-04-09 Hans-Peter Nilsson <hp@bitrange.com>
919
920 PR objc/6107
921 * objc/objc-api.h (struct objc_protocol_list): Change type of
922 member count from int to size_t.
923
924 2002-02-11 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
925
926 PR libobjc/4039
927 * aclocal.m4: Replace with version copied from libstdc++-v3.
928 * configure.in: Update for changes to aclocal and Makefile.
929 * configure: Regenerate.
930 * Makefile.in: Correct install of multilibs and shared libs, use
931 INSTALL_DATA for include files.
932
933 Mon Dec 17 17:02:12 2001 Nicola Pero <nicola@brainstorm.co.uk>
934
935 * init.c (__objc_exec_class): Fixed bug in the loop on unclaimed
936 categories - when an unclaimed category was found, the loop was
937 doing two steps forward instead of one, so that in certain cases
938 it was failing to properly load all the categories. (Reported
939 with fix by Alexander Malmberg <alexander@malmberg.org>).
940
941 2001-11-14 Aldy Hernandez <aldyh@redhat.com>
942
943 * encoding.c: Add target_flags.
944
945 2001-11-07 Aldy Hernandez <aldyh@redhat.com>
946
947 * objc/objc-api.h (_C_VECTOR): New.
948
949 * encoding.c (VECTOR_TYPE): New.
950
951 Mon Oct 29 21:29:21 2001 Nicola Pero <n.pero@mi.flashnet.it>
952
953 * class.c: Rewritten the class table to use optimized, lock-free
954 lookup. This more than doubles the speed of class method
955 invocations. (class_table_setup), (class_table_insert),
956 (class_table_replace), (class_table_get_safe),
957 (class_table_next), (class_table_print),
958 (class_table_print_histogram): New functions.
959 (__objc_init_class_tables): Use class_table_setup.
960 (__objc_add_class_to_hash): Use class_table_get_safe and
961 class_table_insert. (objc_lookup_class), (objc_get_class): Do not
962 assert the existence of the table; do not lock the runtime; use
963 class_table_get_safe. (objc_next_class): Use class_table_next.
964 (__objc_resolve_class_links): Use class_table_next.
965 (class_pose_as): Use class_table_replace.
966
967 2001-09-10 Ovidiu Predescu <ovidiu@cup.hp.com>
968
969 * gc.c: Removed the DEBUG declaration.
970
971 Wed Jul 18 12:48:56 2001 Nicola Pero <n.pero@mi.flashnet.it>
972
973 * thr.c (objc_mutex_lock): Invoke __objc_thread_id directly,
974 rather than through objc_thread_id, to save a function call.
975 (objc_mutex_trylock, objc_mutex_unlock, objc_condition_wait):
976 Ditto.
977
978 Mon Jul 16 12:15:00 2001 Nicola Pero <n.pero@mi.flashnet.it>
979
980 * objc/objc-api.h (object_is_class): Fixed - buggy code was trying
981 to cast an id to a Class, which can not be done. Make the check
982 by using CLS_ISMETA on the class pointer instead.
983 (object_is_meta_class): Similar fix.
984
985 2001-06-09 Alexandre Oliva <aoliva@redhat.com>, Stephen L Moshier <moshier@mediaone.net>
986
987 * configure.in (AC_EXEEXT): Work around in case it expands to
988 nothing, as in autoconf 2.50.
989 * acinclude.m4: Likewise.
990 * configure: Rebuilt.
991
992 2001-06-08 Nicola Pero <n.pero@mi.flashnet.it>
993
994 * THREADS: Explain that when we compile libobjc inside GCC, we
995 always use thr-objc.c as a backend, which uses GCC's thread code.
996
997 2001-06-06 Richard Frith-Macdonald <rrfm@gnu.org>
998
999 * init.c (__objc_send_message_in_list): When setting a new entry
1000 in __objc_load_methods use the method IMP as key, but check to see
1001 if the method is in the hashtable by looking at the IMP also.
1002 Also ... call the method after adding it to the hashtable rather
1003 than before ... thus preventing an obscure possibility of infinite
1004 recursion if a +load method itself loads a subclass.
1005
1006 2001-05-25 Ovidiu Predescu <ovidiu@cup.hp.com>
1007
1008 * init.c (__objc_send_message_in_list): When setting a new entry
1009 in __objc_load_methods use the method name as key, not the method
1010 IMP (reported by Richard Frith-Macdonald <richard@brainstorm.co.uk>).
1011
1012 2001-05-09 Joseph S. Myers <jsm28@cam.ac.uk>
1013
1014 * objc-features.texi: Move to ../gcc/objc.texi.
1015 * fdl.texi: Remove.
1016 * Makefile.in: Don't generate documentation from
1017 objc-features.texi.
1018
1019 2001-05-01 Mark Mitchell <mark@codesourcery.com>
1020
1021 * fdl.texi: New file.
1022 * objc-features.texi: Simplify.
1023 * Makefile.in: Adjust accordingly.
1024
1025 2001-04-30 Mark Mitchell <mark@codesourcery.com>
1026
1027 * objc-features.texi: Use the GFDL.
1028
1029 Wed Mar 21 04:44:58 EST 2001 John Wehle (john@feith.com)
1030
1031 * encoding.c (REAL_TYPE): Define.
1032
1033 2001-03-19 David Edelsohn <edelsohn@gnu.org>
1034
1035 * encoding.c (TYPE_MODE): Define.
1036
1037 2001-03-14 Nicola Pero <n.pero@mi.flashnet.it>
1038
1039 * thr.c (objc_thread_add): New function.
1040 (objc_thread_remove): Ditto.
1041 * objc/thr.h: Declare them.
1042 * libobjc.def: Mention them.
1043
1044 2001-02-28 Ovidiu Predescu <ovidiu@cup.hp.com>
1045
1046 * objc-features.texi: Document the @compatibility_alias compiler
1047 directive (description from Nicola Pero <n.pero@mi.flashnet.it>).
1048
1049 Fri Feb 23 18:12:00 2001 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1050
1051 * sendmsg.c (__objc_forward): Delete strlen() declaration.
1052
1053 2001-02-08 Geoffrey Keating <geoffk@redhat.com>
1054
1055 * configure.in: Don't run AC_PROG_CC_WORKS or AC_EXEEXT, because
1056 we're not interested in the result and they might fail.
1057 * configure: Regenerated.
1058
1059 2001-01-12 Joseph S. Myers <jsm28@cam.ac.uk>
1060
1061 * objc-features.texi: Use @email.
1062
1063 2001-01-12 Joseph S. Myers <jsm28@cam.ac.uk>
1064
1065 * sendmsg.c (__objc_print_dtable_stats): Don't use #ifdef inside
1066 printf.
1067
1068 2000-01-11 Richard Earnshaw <rearnsha@arm.com>
1069
1070 * encoding.c (STRUCTURE_SIZE_BOUNDARY): Redefine in a way that
1071 determines the value dynamically.
1072
1073 Wed Jan 3 00:49:10 2001 Ovidiu Predescu <ovidiu@cup.hp.com>
1074
1075 * sendmsg.c: Added __objc_msg_forward, a hook that allows external
1076 libraries to provide a function that returns the real forwarding
1077 function. This can alleviate problems __builtin_apply() and
1078 friends have on various platforms. (Solution suggested by Helge
1079 Hess.)
1080
1081 * objc/objc-api.h: Define __objc_msg_forward.
1082
1083 * sendmsg.c: Define gen_rtx_REG.
1084
1085 2000-12-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1086
1087 * thr-rtems.c: New file. Stub to compile.
1088
1089 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
1090
1091 * configure: Rebuilt with new libtool.m4.
1092
1093 Tue Aug 15 00:38:56 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
1094
1095 * configure.in: Create a config.h file. Check for <sched.h>.
1096 * configure: Regenerate.
1097
1098 * config.h.in: Check for <sched.h>.
1099
1100 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
1101
1102 * configure: Regenerate after change to ../libtool.m4.
1103
1104 2000-08-14 Andreas Schwab <schwab@suse.de>
1105
1106 * objc-features.texi (Top): Move @menu at end of node.
1107
1108 2000-08-11 Manfred Hollstein <manfredh@redhat.com>
1109
1110 * objc-features.texi: Move @node Top before @menu.
1111
1112 Sun Aug 6 23:27:49 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
1113
1114 * objc-features.texi: Documented the new -fconstant-string-class
1115 option.
1116
1117 Sun Aug 6 22:51:16 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
1118
1119 * thr-posix.c: Integrated Chris Ball's <cball@fmco.com> changes to
1120 improve the Posix thread support for Objective-C.
1121
1122 2000-08-04 Zack Weinberg <zack@wolery.cumb.org>
1123
1124 * aclocal.m4: Replace copy of ../libtool.m4 with
1125 sinclude(../libtool.m4).
1126
1127 Fri Jul 28 08:58:02 2000 Nicola Pero <nicola@brainstorm.co.uk>
1128
1129 * configure.in: Added libtool support; build shared libraries
1130 if --enable-shared was passed on command line.
1131 * Makefile.in: Modified most compilation commands to use libtool.
1132 * aclocal.m4: New symbolic link to the ../libtool.m4, from the
1133 libtool distribution.
1134
1135 Sat Jul 29 00:10:21 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
1136
1137 * sarray.c, Object.m: Removed the explicit prototypes for strlen
1138 and memcpy on 64-bit platforms (Suggested by Rodney Brown
1139 <rdb@cup.hp.com>).
1140
1141 2000-05-12 H.J. Lu (hjl@gnu.org)
1142
1143 * Makefile.in (GTHREAD_FLAGS): New.
1144 (ALL_CFLAGS): Add $(GTHREAD_FLAGS).
1145 (OBJC_THREAD_FILE): Changed to thr-objc.
1146
1147 * configure.in (GTHREAD_FLAGS): New, check and replace it for
1148 Makefile.
1149 (OBJC_THREAD_FILE): Removed.
1150
1151 * thr-objc.c: New.
1152
1153 2000-07-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1154
1155 * objc/hash.h: Include string.h.
1156
1157 2000-04-15 David Edelsohn <edelsohn@gnu.org>
1158
1159 * Object.m (strlen): 64-bit PowerPC is a 64bit platform as well.
1160
1161 2000-04-12 Jakub Jelinek <jakub@redhat.com>
1162
1163 * Object.m (strlen): Provide prototype on all 64bit platforms,
1164 not only alpha.
1165 * sarray.c (memcpy): Likewise.
1166 * encoding.c (objc_layout_finish_structure): Don't use
1167 ROUND_TYPE_ALIGN on sparc.
1168
1169 * encoding.c (objc_layout_structure_next_member): Do the whole
1170 procedure even for the first member, so that we get correct
1171 alignment.
1172
1173 2000-03-29 Zack Weinberg <zack@wolery.cumb.org>
1174
1175 * objc/Protocol.h, objc/objc-list.h: Change #endif labels to
1176 comments.
1177
1178 2000-02-23 Zack Weinberg <zack@wolery.cumb.org>
1179
1180 * Makefile.in: Add -DIN_TARGET_LIBS to ALL_CFLAGS.
1181
1182 Thu Sep 23 07:19:12 1999 Chris Ball <cball@fmco.com>
1183
1184 * thr-posix.c (__objc_mutex_deallocate): made deallocate work.
1185
1186 Tue Sep 21 07:47:10 1999 Jeffrey A Law (law@cygnus.com)
1187
1188 * Makefile.in (gc.o, gc_gc.o): Do not pass -fgnu-runtime to
1189 the compiler when building C code.
1190
1191 Fri Aug 6 23:32:29 1999 Daniel Jacobowitz <drow@drow.them.org>
1192
1193 * Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix,
1194 libdir, libsubdir and tooldir.
1195
1196 Mon Jun 21 05:40:15 1999 John David Anglin <dave@hiauly1>
1197
1198 * init.c (__objc_force_linking): Make global.
1199
1200 Thu May 20 03:20:59 1999 Jeffrey A Law (law@cygnus.com)
1201
1202 * configure.in (AC_EXEEXT): Remove call.
1203 (compiler_name): Explicitly check with no extension and .exe
1204 extension.
1205 * configure: Regenerate.
1206
1207 Sun Apr 25 01:15:34 1999 Mumit Khan <khan@xraylith.wisc.edu>
1208
1209 * Makefile.in (CC1OBJ): Define in terms of CC.
1210 (runtime-info.h): Use.
1211
1212 Fri April 8 08:21:07 1999 Ovidiu Predescu <ovidiu@cup.hp.com>
1213
1214 * objc-features.texi: Updated the URL to Boehm's GC page.
1215
1216 Fri Mar 26 23:41:07 1999 Ovidiu Predescu <ovidiu@cup.hp.com>
1217
1218 * archive.c (__objc_code_char, __objc_write_char): Explicitly specify
1219 the char as being signed (patch from Daniel Jacobowitz
1220 <drow@false.org>).
1221
1222 Wed Mar 24 22:41:28 1999 Mumit Khan <khan@xraylith.wisc.edu>
1223
1224 * configure.in (AC_PREREQ): Update to 2.13.
1225 (AC_EXEEXT): Call to find possible file extension.
1226 (compiler_name): Use.
1227 * configure: Regenerate.
1228
1229 Wed Jan 27 02:31:01 1999 Jeffrey A Law (law@cygnus.com)
1230
1231 * Makefile.in (ALL_CFLAGS): Add -DIN_GCC.
1232
1233 Tue Jan 5 01:38:53 1999 Jeffrey A Law (law@cygnus.com)
1234
1235 * configure.in (thread_file): Correct and simplify code to find
1236 the thread file.
1237 * configure: Rebuilt.
1238
1239 1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
1240
1241 * configure.in (compiler_name): Add check to detect if this
1242 language's compiler has been built.
1243 * configure: Regenerate.
1244
1245 Mon Nov 23 16:50:28 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1246
1247 * configure.in: Use AC_PREREQ(2.12.1).
1248
1249 Thu Nov 19 20:33:37 1998 Jeffrey A Law (law@cygnus.com)
1250
1251 * Makefile.in (runtime-info.h): Avoid GNU make extensions.
1252
1253 Sun Nov 8 17:46:14 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1254
1255 * Makefile.in (INCLUDES): Add -I$(srcdir)/$(MULTISRCTOP)../include.
1256
1257 Thu Oct 22 14:34:06 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1258
1259 * configure.in: Use AC_CONFIG_AUX_DIR($topsrcdir).
1260
1261 Sat Oct 17 05:21:31 1998 Ovidiu Predescu <ovidiu@slip.net>
1262
1263 * objc-features.texi (Top): Changed the email address.
1264 * objc-features.texi (Garbage Collection): Use @uref instead of @url.
1265
1266 Mon Oct 11 21:25:27 1998 Ovidiu Predescu <ovidiu@slip.net>
1267
1268 * encoding.c: Redefine get_inner_array_type to get the first entry
1269 in the structure.
1270
1271 Thu Oct 8 12:21:14 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
1272
1273 * encoding.c (objc_skip_type_qualifiers): Handle _C_BYREF.
1274 (objc_get_type_qualifiers): Similarly.
1275 * objc/encoding.h (_C_BYREF): Define.
1276 (_F_BYREF): Define.
1277
1278 1998-10-07 David S. Miller <davem@pierdol.cobaltmicro.com>
1279
1280 * objc/sarray.h: Make boffset be an unsigned long when sparc so it
1281 works out on 64-bit systems.
1282
1283 Tue Oct 6 20:32:06 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
1284
1285 * Makefile.in (INCLUDES): Make it multilib-friendly.
1286
1287 Fri Oct 2 07:12:14 1998 H.J. Lu (hjl@gnu.org)
1288
1289 * Makefile.in (INCLUDES): Add -I$(srcdir)/../gcc.
1290
1291 Thu Oct 1 22:33:03 1998 Robert Lipe <robertl@dgii.com>
1292 Jeffrey A Law (law@cygnus.com)
1293
1294 * Makefile.in (INCLUDES): Reference gcc via $MULTIBUILDTOP.
1295 (FLAGS_TO_PASS): Added.
1296 (runtime-info.h): Reference cc1ibj via $MULTIBUILDTOP.
1297
1298 * archive.c: Change config.h to tconfig.h.
1299
1300 * configure.in: Find gcc's object directory even for multilibs.
1301
1302 Wed Sep 30 18:17:17 1998 Robert Lipe <robertl@dgii.com>
1303
1304 * configure.in: Escape ^ in grep string.
1305 * configure: Rebuilt.
1306
1307 Wed Sep 30 09:14:52 1998 Jeffrey A Law (law@cygnus.com)
1308
1309 * All .h files pushed down into the objc/ subdirectory.
1310 * Makefile.in (copy_headers): Corresponding changes.
1311 * configure.in (AC_INIT): Corresponding changes.
1312 * configure: Rebuilt.
1313
1314 1998-09-30 Ben Elliston <bje@cygnus.com>
1315 Jeff Law <law@cygnus.com>
1316
1317 * Makefile.in: Rewrite.
1318
1319 * configure.in: Likewise.
1320
1321 * configure: Regenerate.
1322
1323 * All .c files. Remove "objc" prefix when including objc header
1324 files. Include tconfig.h, not ../tconfig.h.
1325
1326 Mon Sep 21 23:27:10 1998 Ovidiu Predescu <ovidiu@slip.net>
1327
1328 * encoding.c (TREE_TYPE, ARRAY_TYPE): Define.
1329 (get_inner_array_type): Define.
1330
1331 1998-09-21 Ben Elliston <bje@cygnus.com>
1332
1333 * New directory. Moved files from ../gcc/objc.