Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
2a89f9e6
...
2a89f9e6a888499f5af7c1d1a4c9b5b01fd2a282
authored
2003-02-21 12:57:43 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
New option --with-mh-bindir sets installation directory for MH binaries
1 parent
70a0f378
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
configure.ac
configure.ac
View file @
2a89f9e
...
...
@@ -426,7 +426,8 @@ AC_SUBST(BUILD_MH_EXEC_HOOK)
MU_ENABLE_SUPPORT(mh,
[BUILD_MH_PROGRAMS='$(PROGRAMS_MH)';
BUILD_MH_LIBRARIES='$(LIBRARIES_MH)'])
BUILD_MH_LIBRARIES='$(LIBRARIES_MH)';
BUILD_MH_EXEC_HOOK=mh_finish_install])
dnl AC_ARG_ENABLE([experimental],
dnl AC_HELP_STRING([--enable-experimental],
...
...
@@ -440,11 +441,20 @@ AC_ARG_ENABLE([mh-utils],
[MU_BUILD_MH="${enableval}"],
[MU_BUILD_MH=no])
AC_SUBST(MH_BIN_DIR)
if test ".$MU_BUILD_MH" = ".no"; then
BUILD_MH_PROGRAMS=
BUILD_MH_LIBRARIES=
BUILD_MH_EXEC_HOOK=
else
BUILD_MH_EXEC_HOOK=mh_finish_install
AC_ARG_WITH([mh-bindir],
AC_HELP_STRING([--with-mh-bindir],
[Set the directory where to install the MH binaries. If it starts with '/' it is taken as an absolute path specification, otherwise ${prefix} is prepended to it. (Default: ${exec_prefix}/bin/mu-mh)]),
[case "${withval}" in
/*) MH_BIN_DIR=${withval};;
*) MH_BIN_DIR="\${prefix}/${withval}";;
esac],
[MH_BIN_DIR='${exec_prefix}/bin/mu-mh'])
fi
if test x"$testpam" = x"yes"; then
...
...
Please
register
or
sign in
to post a comment