aboutsummaryrefslogtreecommitdiff
path: root/libobjc/memory.c
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2016-11-30 00:12:45 +0000
committerMatthias Klose <doko@gcc.gnu.org>2016-11-30 00:12:45 +0000
commit114bf3f172d0f215a576d8964b95c0a4608563e0 (patch)
tree612b3ff1d05c431b7d883db262d72acacab4b0d8 /libobjc/memory.c
parenta2b403c8bb69250b321c9d56e38f5f3537a1e696 (diff)
downloadgcc-114bf3f172d0f215a576d8964b95c0a4608563e0.zip
gcc-114bf3f172d0f215a576d8964b95c0a4608563e0.tar.gz
gcc-114bf3f172d0f215a576d8964b95c0a4608563e0.tar.bz2
Makefile.def: Remove reference to boehm-gc target module.
<toplevel> 2016-11-30 Matthias Klose <doko@ubuntu.com> * Makefile.def: Remove reference to boehm-gc target module. * configure.ac: Include pkg.m4, check for --with-target-bdw-gc options and for the bdw-gc pkg-config module. * configure: Regenerate. * Makefile.in: Regenerate. gcc/ 2016-11-30 Matthias Klose <doko@ubuntu.com> * doc/install.texi: Document configure options --enable-objc-gc and --with-target-bdw-gc. config/ 2016-11-30 Matthias Klose <doko@ubuntu.com> * pkg.m4: New file. libobjc/ 2016-11-30 Matthias Klose <doko@ubuntu.com> * configure.ac (--enable-objc-gc): Allow to configure with a system provided boehm-gc. * configure: Regenerate. * Makefile.in (OBJC_BOEHM_GC_LIBS): Get value from configure. * gc.c: Include system bdw-gc headers. * memory.c: Likewise * objects.c: Likewise boehm-gc/ 2016-11-30 Matthias Klose <doko@ubuntu.com> Remove From-SVN: r242985
Diffstat (limited to 'libobjc/memory.c')
-rw-r--r--libobjc/memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libobjc/memory.c b/libobjc/memory.c
index ee28f82..a439e58 100644
--- a/libobjc/memory.c
+++ b/libobjc/memory.c
@@ -41,7 +41,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#include "objc/runtime.h"
#if OBJC_WITH_GC
-#include <gc.h>
+#include <gc/gc.h>
void *
objc_malloc (size_t size)