mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
49c009b56f
* acinclude.m4: New file, from old aclocal.m4. * configure.in: Call AM_INIT_AUTOMAKE and AM_PROG_LIBTOOL. Remove shared library handling; now handled by libtool. Replace AC_CONFIG_HEADER with AM_CONFIG_HEADER. Call AC_PROG_YACC, AC_PROG_LEX, and AC_DECL_YYTEXT. Call AM_MAINTAINER_MODE, AM_CYGWIN32, and AM_EXEEXT. Don't call CY_CYGWIN32 or CY_EXEEXT. * configure.host: Don't set HLDFLAGS, HLDENV, or RPATH_ENVVAR. * acconfig.h: Mention PACKAGE and VERSION. * stamp-h.in: New file. * ldver.c (ld_program_vresion): Set ld_program_version from VERSION. * ldgram.y, ldlex.l: Replace VERSION with VERSIONK. * Makefile.in: Now built with automake. * aclocal.m4: Now built with aclocal. * configure, config.in: Rebuild.
23 lines
585 B
C
23 lines
585 B
C
|
|
/* Name of package. */
|
|
#undef PACKAGE
|
|
|
|
/* Version of package. */
|
|
#undef VERSION
|
|
|
|
/* Whether strstr must be declared even if <string.h> is included. */
|
|
#undef NEED_DECLARATION_STRSTR
|
|
|
|
/* Whether free must be declared even if <stdlib.h> is included. */
|
|
#undef NEED_DECLARATION_FREE
|
|
|
|
/* Whether sbrk must be declared even if <unistd.h> is included. */
|
|
#undef NEED_DECLARATION_SBRK
|
|
|
|
/* Whether getenv must be declared even if <stdlib.h> is included. */
|
|
#undef NEED_DECLARATION_GETENV
|
|
@TOP@
|
|
|
|
/* Do we need to use the b modifier when opening binary files? */
|
|
#undef USE_BINARY_FOPEN
|