2006-06-22 [paul] 2.3.1cvs14

* configure.ac
		allow setting of man directory location
This commit is contained in:
Paul Mangan 2006-06-22 12:06:50 +00:00
parent 838ee7712a
commit acf6f8eefa
3 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-06-22 [paul] 2.3.1cvs14
* configure.ac
allow setting of man directory location
2006-06-22 [colin] 2.3.1cvs13
* src/mainwindow.c

View file

@ -1614,3 +1614,4 @@
( cvs diff -u -r 1.1.2.21 -r 1.1.2.22 manual/advanced.xml; ) > 2.3.1cvs11.patchset
( cvs diff -u -r 1.36.2.66 -r 1.36.2.67 src/common/utils.c; ) > 2.3.1cvs12.patchset
( cvs diff -u -r 1.274.2.118 -r 1.274.2.119 src/mainwindow.c; ) > 2.3.1cvs13.patchset
( cvs diff -u -r 1.654.2.1660 -r 1.654.2.1661 configure.ac; ) > 2.3.1cvs14.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=3
MICRO_VERSION=1
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=13
EXTRA_VERSION=14
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
@ -176,6 +176,12 @@ if test "x${DATADIRNAME}" = "x"; then
AC_SUBST(DATADIRNAME)
fi
mandir='${prefix}/${DATADIRNAME}/man'
AC_ARG_WITH(mandir,
[ --with-mandir=DIR man directory],
[mandir="$withval"])
AC_SUBST(mandir)
localedir='${prefix}/${DATADIRNAME}/locale'
AC_ARG_WITH(localedir,
[ --with-localedir=DIR Locale directory],