[Orca-checkins] r276 - trunk/orca/config

Blair Zajac blair at orcaware.com
Sun Jan 18 21:55:14 PST 2004


Author: blair
Date: Sun Jan 18 21:54:38 2004
New Revision: 276

Modified:
   trunk/orca/config/acinclude.m4
Log:
* config/acinclude.m4:
  Fix the following two warnings from automake 2.59:

    config/acinclude.m4:7: warning: underquoted definition of BORP_PERL_MODULE
    config/acinclude.m4:23: warning: underquoted definition of BORP_PERL_RUN

  The names being AC_DEFUN'ed now need to be placed in []'s.  See

    http://sources.redhat.com/automake/automake.html#Extending%20aclocal

  for more information.


Modified: trunk/orca/config/acinclude.m4
==============================================================================
--- trunk/orca/config/acinclude.m4	(original)
+++ trunk/orca/config/acinclude.m4	Sun Jan 18 21:54:38 2004
@@ -4,7 +4,7 @@
 dnl the module is not installed.
 dnl BORP_PERL_MODULE(DEFINE, PATH_TO_PERL, MODULE_NAME, MODULE_VERSION,
 dnl    [ACTION_IF_FOUND, [ACTION_IF_NOT_FOUND]]
-AC_DEFUN(BORP_PERL_MODULE, [
+AC_DEFUN([BORP_PERL_MODULE], [
   AC_MSG_CHECKING([if Perl module $3 version $4 is installed])
   if $2 ./config/check_for_perl_mod $3 $4; then
     $1=yes
@@ -20,7 +20,7 @@
 dnl of a shell script.  Some systems have length restrictions
 dnl so some paths to programs may be too long.
 dnl BORP_PERL_RUN(PATH_TO_SHELL [, ACTION-IF-WORKS [, ACTION-IF_NOT]])
-AC_DEFUN(BORP_PERL_RUN, [
+AC_DEFUN([BORP_PERL_RUN], [
   AC_MSG_CHECKING([if '$1' will run Perl scripts])
   rm -f conftest.BZ
   cat > conftest.BZ <<EOF



More information about the Orca-checkins mailing list