summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* configure.ac: update to version 0.9.90.9.9Michael Orlitzky2023-07-261-1/+1
| | | | Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* Bump version to 0.9.80.9.8Brian Evans2021-10-251-1/+1
| | | | Signed-off-by: Brian Evans <grknight@gentoo.org>
* configure.ac: rename AC_HELP_STRING -> AS_HELP_STRING.Michael Orlitzky2021-08-171-2/+2
| | | | | | This change is suggested by "autoupdate" with autoconf-2.71. Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* Version bump to 0.9.70.9.7Brian Evans2020-12-071-1/+1
| | | | Signed-off-by: Brian Evans <grknight@gentoo.org>
* autotools: use recursive automake to support out-of-source builds.Michael Orlitzky2020-01-231-1/+8
| | | | | | | | | | | | | | | | When performing an out-of-source build (in particular, with "make distcheck"), the rules that we were using to replace @LIBDIR@ and friends were failing. Automake does a lot of path magic in its rules, but not within the shell commands themselves, so ultimately we wound up with some confusion between the source and build directories. Rather than hack around this problem in the top-level Makefile.am, I've converted the project to a recursive build, where the top-level Makefile.am delegates to Makefile.am in the subdirectories. This over-complicates things, but does fix the out-of-source build. Why? A guess: because the path magic works better in "." than elsewhere. Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* configure.ac: update to version 0.9.6.Michael Orlitzky2020-01-231-1/+1
| | | | Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* configure.ac: use "ustar" format for the release tarballs.Michael Orlitzky2020-01-221-1/+1
| | | | | | | | | The default tar format used by autotools is the historical v7 format, which sucks. Let's use the improved "ustar" format instead. The automake documentation has more information if this is the sort of thing that interests you. Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* configure.ac: place build artifacts in the "build-aux" directory.Michael Orlitzky2020-01-221-0/+1
| | | | | | | | | | | | | During the build, autotools generates a bunch of files that need a place to live. By default, most of them (the "missing" script, for example) wind up in the project root. This commit sets AC_CONFIG_AUX_DIR([build-aux]) in configure.ac so that the aforementioned files are placed in the build-aux directory instead. Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* configure.ac: update to version 0.9.5.0.9.5Michael Orlitzky2018-04-131-1/+1
|
* configure.ac: update to version 0.9.4.0.9.4Michael Orlitzky2017-07-261-1/+1
|
* Use "init.d" and "conf.d" subdirectories of "openrc".Michael Orlitzky2017-07-261-1/+1
| | | | | | | OpenRC's init and conf files need to be named the same, and so we hit problems trying to store them both in the "openrc" directory. This commit puts the conf file in a "conf.d" subdirectory and the init script in an "init.d" subdirectory.
* Install the php-fpm init scripts conditional on --enable-fpm.0.9.3Michael Orlitzky2017-07-251-0/+12
|
* Rename OpenRC init script and config file.Michael Orlitzky2017-07-251-1/+1
| | | | | | | | | The OpenRC init script is now installed by the Makefile, so to be useful it needs to be called "php-fpm". To that end, I've renamed both the init script and the config file to lack the word "example". Moreover, now that these files are code-like and not documentation-like, I've renamed the directory containing them from "doc" to "openrc".
* configure.ac: update the version to 0.9.3.Michael Orlitzky2017-07-251-1/+1
|
* Add a --with-piddir configure flag.Michael Orlitzky2017-07-241-0/+7
| | | | | | | Our php-fpm init script defaulted to using /run for its pid file, but now that is configurable via the --with-piddir flag. Its value defaults to @LOCALSTATEDIR@ and the variable substitution should work whether or not --with-piddir is set explicitly.
* Rename the init script input file to facilitate the two-phase replacement.Michael Orlitzky2017-07-191-1/+1
| | | | | | | | We perform variable substitution twice in the main eselect script -- once through autotools, and the other manually in the resulting Makefile. As a result, the script has a double "in.in" suffix. To make substitution work the same way in the init script, this commit renames it with an "in.in" suffix, and mentions it in configure.ac.
* Bump version to 0.9.2 in configure.ac.0.9.2Michael Orlitzky2016-07-261-1/+1
|
* Bump to v0.9.1 in configure.ac.0.9.1Michael Orlitzky2016-01-221-1/+1
|
* Bump to v0.9.0 in configure.ac.Michael Orlitzky2016-01-221-1/+1
|
* Add --enable-apache2 flag to the configure script.Michael Orlitzky2016-01-221-0/+14
| | | | | | | | The latest eselect-php ebuild allows users to avoid 70_mod_php.conf by setting USE="-apache2". Now that the conf file is part of eselect-php, we replicate that ability with --enable-apache2=no, or in fact by default. To install the apache conf file, one passes --enable-apache2 to the configure script.
* Add another layer of indirection to get @bindir@ and friends in the output.Michael Orlitzky2016-01-211-1/+1
| | | | | | | | | | | | | | When we create php.eselect from php.eselect.in using autoconf, we don't have a way to get the full, expanded value of @bindir@, @libdir@, and the other paths that we need. The autoconf documentation suggests a workaround for this: add another layer of indirection, and use the Makefile to substitute those values into the output files. This commit sets the stage by renaming php.eselect.in to php.eselect.in.in. The first round of processing by autoconf takes php.eselect.in.in to php.eselect.in. The Makefile will then generate php.eselect from php.eselect.in after substituting @bindir@, @libdir@, and @localstatedir@.
* Bump to v0.8.5 in configure.ac.0.8.5Michael Orlitzky2016-01-091-1/+1
|
* Bump to v0.8.4 in configure.ac.0.8.4Michael Orlitzky2016-01-081-1/+1
|
* Bump to v0.8.3 in configure.ac.0.8.3Michael Orlitzky2016-01-081-1/+1
|
* Use AC_PROG_MKDIR_P macro/variable instead of "mkdir -p".Michael Orlitzky2015-12-101-0/+1
|
* Bump version to 0.8.1 in configure.ac.0.8.1Michael Orlitzky2015-12-101-1/+1
|
* Test for sort/uniq executables and use the results instead of "sort -u".0.8.0Michael Orlitzky2015-12-061-0/+2
|
* Use AC_PROG_LN_S macro to replace "ln -s".Michael Orlitzky2015-12-061-0/+1
|
* Use AC_PROG_SED to determine POSIX-compatible sed path.Michael Orlitzky2015-12-061-0/+2
|
* Create trivial autotools "build system."Michael Orlitzky2015-12-061-0/+7