From ecba1e2451c8edadfd24f0512d548f356e6c99f7 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Tue, 16 May 2000 11:54:36 +0000 Subject: [PATCH] OS/390 doesn't have ranlib and its make utility thinks RANLIB=: is a rule, so set RANLIB to true if there is no ranlib. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85229 13f79535-47bb-0310-9956-ffa450edef68 --- srclib/pcre/configure.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srclib/pcre/configure.in b/srclib/pcre/configure.in index b59bab6bbe..9d053aa187 100644 --- a/srclib/pcre/configure.in +++ b/srclib/pcre/configure.in @@ -30,7 +30,9 @@ PCRE_POSIXLIB_VERSION=0:0:0 dnl Checks for programs. AC_PROG_CC -AC_PROG_RANLIB +dnl OS/390 doesn't have ranlib and its make utility thinks RANLIB=: +dnl is a rule, so set RANLIB to true if there is no ranlib. +AC_CHECK_PROG(RANLIB, ranlib, ranlib, true) dnl Checks for header files. -- 2.40.0