mirror of https://github.com/getdnsapi/getdns.git
Add configure --with-piddir. Use this for runstatedir.
You need autoconf 2.70 (or 2.69 plus patch as in Debian) for runstatedir to be automatically in the configure script. This adds a always-present config option.
This commit is contained in:
parent
5d581baae1
commit
2d0d1c9e6f
11
configure.ac
11
configure.ac
|
@ -38,6 +38,17 @@ sinclude(./m4/pkg.m4)
|
|||
|
||||
AC_INIT([getdns], [1.2.1], [users@getdnsapi.net], [], [https://getdnsapi.net])
|
||||
|
||||
# Autoconf 2.70 will have set up runstatedir. 2.69 is frequently (Debian)
|
||||
# patched to do the same, but frequently (MacOS) not. So add a with option
|
||||
# for pid file location, and default it to runstatedir if present.
|
||||
default_piddir=${runstatedir:-"${localstatedir}/run"}
|
||||
AC_ARG_WITH([piddir],
|
||||
[AS_HELP_STRING([--with-piddir=DIR],
|
||||
[directory for pid files @<:@default=RUNSTATEDIR or LOCALSTATEDIR/run@:>@])],
|
||||
[],
|
||||
[with_piddir=${default_piddir}])
|
||||
AC_SUBST([runstatedir], [$with_piddir])
|
||||
|
||||
# Dont forget to put a dash in front of the release candidate!!!
|
||||
# That is how it is done with semantic versioning!
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue