You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bj...@apache.org on 2005/07/02 09:12:39 UTC

svn commit: r208825 - /apr/apr/branches/1.1.x/build/find_apr.m4

Author: bjh
Date: Sat Jul  2 00:12:37 2005
New Revision: 208825

URL: http://svn.apache.org/viewcvs?rev=208825&view=rev
Log:
OS/2: Use autoconf 2.5x compatible test for running under OS/2 when
determining how to test for scripts. $ac_cv_emxos2 was only defined by the
common OS/2 port of autoconf 2.13.

Backport from trunk of r164553

Modified:
    apr/apr/branches/1.1.x/build/find_apr.m4

Modified: apr/apr/branches/1.1.x/build/find_apr.m4
URL: http://svn.apache.org/viewcvs/apr/apr/branches/1.1.x/build/find_apr.m4?rev=208825&r1=208824&r2=208825&view=diff
==============================================================================
--- apr/apr/branches/1.1.x/build/find_apr.m4 (original)
+++ apr/apr/branches/1.1.x/build/find_apr.m4 Sat Jul  2 00:12:37 2005
@@ -61,7 +61,7 @@
 AC_DEFUN([APR_FIND_APR], [
   apr_found="no"
 
-  if test "$ac_cv_emxos2" = "yes"; then
+  if test "$target_os" = "os2-emx"; then
     # Scripts don't pass test -x on OS/2
     TEST_X="test -f"
   else