diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-01 23:16:34 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-01 23:16:34 +0000 |
commit | 20e58c02879f4395b58ffc4d6c33c0171fe75a34 (patch) | |
tree | 01d6cb013dec4da6b59d8715a4032d7335e03d05 /libffi/include | |
parent | 2fc24cee2a68172b9e3f2e993c75ad01769cf136 (diff) | |
download | ppe42-gcc-20e58c02879f4395b58ffc4d6c33c0171fe75a34.tar.gz ppe42-gcc-20e58c02879f4395b58ffc4d6c33c0171fe75a34.zip |
* include/ffi.h.in: Removed PACKAGE and VERSION defines and
undefs.
* fficonfig.h.in: Rebuilt.
* configure: Rebuilt.
* configure.in: Pass 3rd argument to AM_INIT_AUTOMAKE.
Use AM_PROG_LIBTOOL (automake 1.4 compatibility).
* acconfig.h: Don't #undef PACKAGE or VERSION.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29038 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libffi/include')
-rw-r--r-- | libffi/include/Makefile.in | 3 | ||||
-rw-r--r-- | libffi/include/ffi.h.in | 21 |
2 files changed, 3 insertions, 21 deletions
diff --git a/libffi/include/Makefile.in b/libffi/include/Makefile.in index 20192e56514..1a85bf511a3 100644 --- a/libffi/include/Makefile.in +++ b/libffi/include/Makefile.in @@ -71,13 +71,14 @@ LN_S = @LN_S@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ NM = @NM@ +OBJDUMP = @OBJDUMP@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ SHELL = @SHELL@ TARGET = @TARGET@ TARGETDIR = @TARGETDIR@ -USE_SYMBOL_UNDERSCORE = @USE_SYMBOL_UNDERSCORE@ VERSION = @VERSION@ +install_sh = @install_sh@ AUTOMAKE_OPTIONS = foreign diff --git a/libffi/include/ffi.h.in b/libffi/include/ffi.h.in index e438f77f7f6..8eefb6dbcd0 100644 --- a/libffi/include/ffi.h.in +++ b/libffi/include/ffi.h.in @@ -1,7 +1,7 @@ /* -----------------------------------------------------------------*-C-*- libffi @VERSION@ - Copyright (c) 1996-1999 Cygnus Solutions - $Id: ffi.h.in,v 1.1 1999/08/08 22:58:30 green Exp $ + $Id: ffi.h.in,v 1.2 1999/08/09 02:52:58 green Exp $ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -36,27 +36,8 @@ extern "C" { /* ---- System configuration information --------------------------------- */ -#ifdef PACKAGE -#define OLD_PACKAGE PACKAGE -#undef PACKAGE -#endif -#ifdef VERSION -#define OLD_VERSION VERSION -#undef VERSION -#endif - #include <fficonfig.h> -#undef PACKAGE -#undef VERSION - -#ifdef OLD_PACKAGE -#define PACKAGE OLD_PACKAGE -#endif -#ifdef OLD_VERSION -#define VERSION OLD_VERSION -#endif - #if !defined(LIBFFI_ASM) #include <stddef.h> #if defined(FFI_DEBUG) |