1
1

Install header files to 'PREFIX/include/vampirtrace' to avoid compile error due to conflicts with newer "stand-alone" VT versions

This commit was SVN r21065.
Этот коммит содержится в:
Matthias Jurenz 2009-04-24 11:36:38 +00:00
родитель 8704d33f4e
Коммит 9bd95d04e0
3 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -242,3 +242,7 @@
- replaced usage of PATH_MAX by VT_PATH_MAX to avoid compile errors
on some platforms
5.4.9
- install header files to 'PREFIX/include/vampirtrace' by default to
avoid conflicts with the OpenMPI integrated version of VT

Просмотреть файл

@ -8,7 +8,7 @@
major=5
minor=4
release=8
release=9
# greek is used for alpha or beta release tags. If it is non-empty,
# it will be appended to the version number. It does not have to be

Просмотреть файл

@ -2,8 +2,8 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.60)
AC_INIT(VampirTrace, 5.4.8, vampirsupport@zih.tu-dresden.de)
AM_INIT_AUTOMAKE(VampirTrace, 5.4.8)
AC_INIT(VampirTrace, 5.4.9, vampirsupport@zih.tu-dresden.de)
AM_INIT_AUTOMAKE(VampirTrace, 5.4.9)
AM_CONFIG_HEADER(config.h)
ACVT_CONF_INIT
@ -42,8 +42,10 @@ AC_CANONICAL_HOST
# Correct install paths
AS_IF([test x"$prefix" = "xNONE"], [prefix="$ac_default_prefix"])
AS_IF([test x"$exec_prefix" = "xNONE"], [exec_prefix="$prefix"])
AS_IF([test x"$includedir" = x -o "$includedir" = "\${prefix}/include"],
[includedir="$includedir/vampirtrace"])
AS_IF([test x"$datarootdir" = x -o "$datarootdir" = "\${prefix}/share"],
[datarootdir="\${prefix}/share/vampirtrace"])
[datarootdir="$datarootdir/vampirtrace"])
AS_IF([test x"$docdir" = x -o "$docdir" = "\${datarootdir}/doc/\${PACKAGE_TARNAME}"],
[docdir="\${datarootdir}/doc"])