mirror of
https://github.com/troglobit/editline.git
synced 2025-12-16 02:54:46 +08:00
Minix editline v0.1.3
===================== Fix another build warning for Arm cross-gcc, which actually was v4.1.2 This time getpid() was missing unistd.h, but kill() was also missing signal.h. Added test for signal.h, but left out unistd.h since we already define SYS_UNIX -- which we should really check for instead... The rest are cosmetic prototype or automake/autoconf fixes.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ(2.61)
|
||||
AC_INIT(Minix editline, 0.1.2, joachim@vmlinux.org)
|
||||
AC_INIT(Minix editline, 0.1.3, joachim@vmlinux.org)
|
||||
AC_CONFIG_SRCDIR([src/editline.c])
|
||||
AC_CONFIG_HEADER([config.h])
|
||||
|
||||
@@ -20,7 +20,7 @@ AC_HEADER_DIRENT
|
||||
AC_HEADER_STDC
|
||||
# Check for malloc.h instead of AC_FUNC_MALLOC/REALLOC AIX and others
|
||||
# mess up the traditional malloc check.
|
||||
AC_CHECK_HEADERS([malloc.h sgtty.h stdlib.h string.h termio.h termios.h])
|
||||
AC_CHECK_HEADERS([malloc.h signal.h sgtty.h stdlib.h string.h termio.h termios.h])
|
||||
|
||||
# Checks for typedefs, structures, and compiler characteristics.
|
||||
AC_HEADER_STAT
|
||||
|
||||
Reference in New Issue
Block a user