diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2002-06-10 14:11:23 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2002-06-10 14:11:23 +0000 |
commit | f36d310bebfb874b41729ab15ec83b4b6f9e206a (patch) | |
tree | 938b8ccf28f8ed575058931887f83ff926dc0bbd /gnu/usr.bin/texinfo | |
parent | afa07b3fc0be46d85462a6525a1c1f3fe563e967 (diff) |
texinfo 4.2 uses a new autoconf, those should be gone.
Diffstat (limited to 'gnu/usr.bin/texinfo')
-rw-r--r-- | gnu/usr.bin/texinfo/acconfig.h | 51 | ||||
-rw-r--r-- | gnu/usr.bin/texinfo/configure.in | 115 |
2 files changed, 0 insertions, 166 deletions
diff --git a/gnu/usr.bin/texinfo/acconfig.h b/gnu/usr.bin/texinfo/acconfig.h deleted file mode 100644 index 6c34c33acc2..00000000000 --- a/gnu/usr.bin/texinfo/acconfig.h +++ /dev/null @@ -1,51 +0,0 @@ -/* acconfig.h - This file is in the public domain. - - Descriptive text for the C preprocessor macros that - the distributed Autoconf macros can define. - No software package will use all of them; autoheader copies the ones - your configure.in uses into your configuration header file templates. - - The entries are in sort -df order: alphabetical, case insensitive, - ignoring punctuation (such as underscores). Although this order - can split up related entries, it makes it easier to check whether - a given entry is in the file. - - Leave the following blank line there!! Autoheader needs it. */ - - -@TOP@ - -/* Define to 1 if NLS is requested. */ -#undef ENABLE_NLS - -/* Define as 1 if you have catgets and don't want to use GNU gettext. */ -#undef HAVE_CATGETS - -/* Define as 1 if you have gettext and don't want to use GNU gettext. */ -#undef HAVE_GETTEXT - -/* Define if your locale.h file contains LC_MESSAGES. */ -#undef HAVE_LC_MESSAGES - -/* Define as 1 if you have the stpcpy function. */ -#undef HAVE_STPCPY - -/* Define to the name of the distribution. */ -#undef PACKAGE - -/* Define to the version of the distribution. */ -#undef VERSION - -@BOTTOM@ - -/* For gettext (NLS) */ -#include <libintl.h> -#define _(String) gettext (String) -#define N_(String) (String) - - -/* Leave that blank line there!! Autoheader needs it. - If you're adding to this file, keep in mind: - The entries are in sort -df order: alphabetical, case insensitive, - ignoring punctuation (such as underscores). */ diff --git a/gnu/usr.bin/texinfo/configure.in b/gnu/usr.bin/texinfo/configure.in deleted file mode 100644 index c2e95ca5cf5..00000000000 --- a/gnu/usr.bin/texinfo/configure.in +++ /dev/null @@ -1,115 +0,0 @@ -dnl Process this file with autoconf to produce a configure script. -dnl $Id: configure.in,v 1.3 2000/02/09 02:18:36 espie Exp $ -dnl -AC_INIT(makeinfo/makeinfo.c) -AC_PREREQ(2.13)dnl Minimum Autoconf version required. -AM_CONFIG_HEADER(config.h:config.in)dnl Keep filename to 8.3 for MS-DOS. - -AM_INIT_AUTOMAKE([texinfo], [4.0]) - -AM_CONDITIONAL(TEXINFO_MAINT, test -n "$TEXINFO_MAINT") - -dnl Checks for programs. -AC_PROG_CC -AC_PROG_GCC_TRADITIONAL -AC_PROG_INSTALL -AC_PROG_RANLIB - -AC_ISC_POSIX -AC_MINIX - -# Needed on sysV68 for sigblock, sigsetmask. But check for it in libc first. -AC_CHECK_FUNC(sigblock, , AC_CHECK_LIB(bsd, sigblock)) - -# Some GNU/Linux systems (e.g., SuSE 4.3, 1996) don't have curses, but -# rather ncurses. So we check for it. -TERMLIBS= -# Check for termlib before termcap because Solaris termcap needs libucb. -for termlib in ncurses curses termlib termcap terminfo; do - AC_CHECK_LIB(${termlib}, tgetent, - [TERMLIBS="${TERMLIBS} -l${termlib}"; break]) -done - -dnl Checks for header files. -dnl Do not use <ncurses/termcap.h> unless we're linking with ncurses. -if test "x$termlib" = xncurses; then - dnl Use AC_CHECK_HEADERS so the HAVE_*_H symbol gets defined. - AC_CHECK_HEADERS(ncurses/termcap.h) -fi -AC_HEADER_STAT -AC_HEADER_STDC -AC_CHECK_HEADERS(fcntl.h pwd.h string.h strings.h termcap.h termio.h \ - termios.h unistd.h \ - sys/fcntl.h sys/file.h sys/ptem.h sys/time.h sys/ttold.h sys/wait.h) -AM_SYS_POSIX_TERMIOS -AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL - -dnl Checks for typedefs, structures, and compiler characteristics. -AC_TYPE_OFF_T -AC_TYPE_SIGNAL -AC_C_CONST -AC_STRUCT_TM - -dnl Checks for function declarations. -txi_CHECK_DECLS - -dnl Checks for library functions. -AC_FUNC_ALLOCA -AC_FUNC_STRCOLL -AC_FUNC_VPRINTF -AC_FUNC_SETVBUF_REVERSED -AC_CHECK_FUNCS(setvbuf getcwd memset bzero strchr sigprocmask sigsetmask) -dnl strerror, xmalloc, xrealloc, probably others should be added. -AC_REPLACE_FUNCS(memcpy memmove strdup strcasecmp strerror strncasecmp) - -dnl Checks for variables. -# HP-UX 9 (at least) needs -lncurses which defines termcap variables PC etc. -AC_MSG_CHECKING(for library with termcap variables) -AC_CACHE_VAL(ac_cv_var_ospeed, -oldLIBS=$LIBS -for trylib in $termlib ncurses curses termlib termcap terminfo; do - if test "x$trylib" != "x$termlib"; then - LIBS="$oldLIBS -l$termlib -l$trylib" - else - LIBS="$oldLIBS -l$termlib" - fi - AC_TRY_LINK(, -#ifdef HAVE_NCURSES_TERMCAP_H -#include <ncurses/termcap.h> -#else -#ifdef HAVE_TERMCAP_H -#include <termcap.h> -#else -#undef PC -char *BC; -char* *UP; -char PC; -short ospeed; -#endif -#endif -return ospeed != 0; -, ac_cv_var_ospeed=$trylib; break) -done -LIBS=$oldLIBS -) -AC_MSG_RESULT($ac_cv_var_ospeed) -if test -n "$ac_cv_var_ospeed" \ - && test "x$termlib" != "x$ac_cv_var_ospeed"; then - TERMLIBS="${TERMLIBS} -l${ac_cv_var_ospeed}" -fi -AC_SUBST(TERMLIBS) - -dnl Set of available languages and i18n macros. -ALL_LINGUAS="cs de de_AT eo fr nl no ru" -AM_GNU_GETTEXT - -AC_OUTPUT([Makefile \ - doc/Makefile \ - info/Makefile \ - intl/Makefile \ - lib/Makefile \ - makeinfo/Makefile \ - makeinfo/tests/Makefile \ - po/Makefile.in \ - util/Makefile \ - ]) |