This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] find libart2-config executable


This is an "old" patch, somehow it vanished during some checkins ...
It's needed to find the correct libart-config executable on Debian
systems. It's still in libart.m4, but not in aclocal.m4. How was this
file regenerated, if not from libart.m4?

	Matthias

--- libjava/aclocal.m4~	2004-01-02 12:28:12.000000000 +0100
+++ libjava/aclocal.m4	2004-01-03 11:59:31.000000000 +0100
@@ -960,7 +960,10 @@
      fi
   fi
 
-  AC_PATH_PROG(LIBART_CONFIG, libart-config, no)
+  AC_PATH_PROG(LIBART_CONFIG, libart2-config, no)
+  if test "$LIBART_CONFIG" = "no" ; then
+    AC_PATH_PROG(LIBART_CONFIG, libart-config, no)
+  fi
   min_libart_version=ifelse([$1], ,0.2.5,$1)
   AC_MSG_CHECKING(for LIBART - version >= $min_libart_version)
   no_libart=""


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]