* Removed a debug line that was mistakenly left. With it "psrun" always printed the following when starting a program, Event: '<event_name>', component index: <papi_comp_index>. such as: "Event: 'PAPI_BR_CN', component index: 0." For a complete description of all changes sincew 1.0.4a see the file CHANGES in the package documentation. - Add CHANGES, LICENSE and AUTHORS to the package documentation - Add perfsuite-no_implicit_decls.patch to fix strcmp being declared implicitly. OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/perfsuite?expand=0&rev=4
64 lines
1.6 KiB
Diff
64 lines
1.6 KiB
Diff
---
|
|
configure.ac | 22 +++++++++++-----------
|
|
1 file changed, 11 insertions(+), 11 deletions(-)
|
|
|
|
Index: configure.ac
|
|
===================================================================
|
|
--- configure.ac.orig 2013-12-20 22:31:06.000000000 +0100
|
|
+++ configure.ac 2014-09-08 14:02:01.463998908 +0200
|
|
@@ -25,7 +25,7 @@ of the University of Illinois.
|
|
])
|
|
AC_CONFIG_AUX_DIR(acaux)
|
|
AC_CONFIG_MACRO_DIR(acmacros)
|
|
-AC_PROG_MAKE_SET
|
|
+AC_PROG_MAKE_SET()
|
|
|
|
|
|
# Obtain the command line, hostname and pwd used in "configure" for "psinv -b".
|
|
@@ -39,19 +39,19 @@ AC_DEFINE_UNQUOTED(PS_BUILD_PWD, ["$ac_p
|
|
|
|
# Checks for programs.
|
|
|
|
-AC_PROG_AWK
|
|
-AC_PROG_CC
|
|
+AC_PROG_AWK()
|
|
+AC_PROG_CC()
|
|
if test "$GCC" != "yes" -o $CC = "icc"; then
|
|
AC_MSG_FAILURE([Please use the GNU gcc compiler to build PerfSuite.
|
|
You may set the variable F77 to the name of a non-GNU Fortran compiler.
|
|
Please see the PerfSuite installation instructions for more information.])
|
|
fi
|
|
-AC_PROG_CPP
|
|
-AC_PROG_CXX
|
|
-AC_PROG_F77
|
|
-AC_PROG_INSTALL
|
|
-AC_PROG_LIBTOOL
|
|
-AC_PROG_LN_S
|
|
+AC_PROG_CPP()
|
|
+AC_PROG_CXX()
|
|
+AC_PROG_F77()
|
|
+AC_PROG_INSTALL()
|
|
+AC_PROG_LIBTOOL()
|
|
+AC_PROG_LN_S()
|
|
AC_PATH_PROG(XMLLINT,[xmllint])
|
|
|
|
AM_CONDITIONAL(SHAREDLIBS,test "$enable_shared" = "yes")
|
|
@@ -60,7 +60,7 @@ AM_CONDITIONAL(SHAREDLIBS,test "$enable_
|
|
|
|
cpuidinfo=`egrep 'family|model|stepping|MHz' /proc/cpuinfo | tail -5`
|
|
|
|
-AC_CANONICAL_TARGET
|
|
+AC_CANONICAL_TARGET()
|
|
|
|
case $host in
|
|
i*86-*-linux*)
|
|
@@ -222,7 +222,7 @@ $cpuidinfo])
|
|
|
|
# Initialize for Automake
|
|
|
|
-AM_INIT_AUTOMAKE([dist-bzip2])
|
|
+AM_INIT_AUTOMAKE([dist-bzip2 foreign])
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
|