From 6b01b59811f1ef850b94f9c2d7d8f70d9ae79cd5 Mon Sep 17 00:00:00 2001 From: moritz Date: Tue, 27 Feb 2007 14:44:46 +0000 Subject: [PATCH] Let MIPS[pro] C be chatty with warnings and check for basename() in libgen. Ezstream now builds on IRIX. git-svn-id: https://svn.xiph.org/trunk/ezstream@12576 0101bb08-14d6-0310-b084-bc0e0c8e3800 --- configure.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 6c2919c..e9033c8 100644 --- a/configure.in +++ b/configure.in @@ -21,7 +21,7 @@ AC_CANONICAL_HOST if test -z "$GCC"; then case $host in *-irix*) - XIPH_CPPFLAGS="-w -signed" + XIPH_CPPFLAGS="-fullwarn" ;; *-solaris*) XIPH_CPPFLAGS="-v" @@ -62,6 +62,7 @@ AC_CHECK_HEADERS(sys/time.h paths.h signal.h) dnl LIBRARY FUNCTIONS +AC_CHECK_LIB(gen, basename) AC_CHECK_FUNCS(arc4random geteuid gettimeofday random srandomdev) AC_REPLACE_FUNCS(getopt strlcat strlcpy) if test x"$ac_cv_header_signal_h" = "xyes"; then