Update of /cvsroot/softpear/softpear
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32303
Modified Files:
AUTHORS configure.ac
Log Message:
added some more configure checks which were proposed by autocheck
filled AUTHORS with content :)
Index: AUTHORS
===================================================================
RCS file: /cvsroot/softpear/softpear/AUTHORS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- AUTHORS 11 Jan 2005 23:15:44 -0000 1.1
+++ AUTHORS 16 Apr 2005 11:10:57 -0000 1.2
@@ -0,0 +1,26 @@
+ ______ ___ ______
+ / _____) / __) _ (_____ \
+( (____ ___ _| |__ _| |_ _____) )____ _____ ____
+ \____ \ / _ (_ __|_ _) ____/ ___ (____ |/ ___)
+ _____) ) |_| || | | |_| | | ____/ ___ | |
+(______/ \___/ |_| \__)_| |_____)_____|_|
+
+
+ brought to you by
+
+
+Project Admin:
+ Michael Steil
+
+Core development:
+ Michael Steil
+ Axel Auweter
+
+Developers:
+ Bernhard Bauer
+ Michael Engel
+ Roland Riegel
+ James Whitwell
+
+Special thanks:
+ Sebastian Biallas and the whole PearPC Team
Index: configure.ac
===================================================================
RCS file: /cvsroot/softpear/softpear/configure.ac,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- configure.ac 14 Apr 2005 14:50:02 -0000 1.8
+++ configure.ac 16 Apr 2005 11:10:57 -0000 1.9
@@ -93,7 +93,7 @@
dnl Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
-AC_CHECK_HEADERS([fcntl.h stddef.h stdlib.h string.h strings.h sys/ioctl.h unistd.h utime.h runetype.h])
+AC_CHECK_HEADERS([fcntl.h stddef.h stdlib.h string.h strings.h sys/ioctl.h unistd.h utime.h runetype.h locale.h termios.h])
dnl Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
@@ -174,7 +174,9 @@
AC_FUNC_SETVBUF_REVERSED
AC_FUNC_STAT
AC_FUNC_UTIME_NULL
-AC_CHECK_FUNCS([bzero memmove memset munmap strchr strrchr utime])
+AC_FUNC_GETPGRP
+AC_FUNC_VPRINTF
+AC_CHECK_FUNCS([bzero memmove memset munmap strchr strrchr utime dup2 endpwent getcwd gethostname mkdir rmdir sethostname setlocale strerror strtol])
AC_OUTPUT
|