summaryrefslogtreecommitdiffstats
path: root/buildconf (follow)
Commit message (Collapse)AuthorAgeFilesLines
* APR-util has renamed buildconf.sh to buildconf to match APR and httpd-2.0.Justin Erenkrantz2001-08-011-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89864 13f79535-47bb-0310-9956-ffa450edef68
* Note the change to the CVS server in the buildconf script.Ryan Bloom2001-07-171-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89562 13f79535-47bb-0310-9956-ffa450edef68
* give the poor users (i.e. us) a clue that something might be wrong whenGreg Ames2001-04-161-2/+8
| | | | | | | buildconf fails in subdirectories git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88871 13f79535-47bb-0310-9956-ffa450edef68
* Abort apache buildconf if apr buildconf or apr-util buildconf fails.Jeff Trawick2001-03-281-2/+2
| | | | | | | | Otherwise, the error message from apr or apr-util (e.g., invalid libtool version) is lost in the stream of output. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88602 13f79535-47bb-0310-9956-ffa450edef68
* Untangled the buildconf script and eliminated the need for build'sRoy T. Fielding2001-03-241-3/+112
| | | | | | | | aclocal.m4, generated_lists, build.mk, build2.mk, and a host of other libtool muck that is now under srclib/apr/build. More to follow. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88570 13f79535-47bb-0310-9956-ffa450edef68
* We don't have config.guess until later in the build cycle, so change theDavid Reid2000-09-241-2/+2
| | | | | | | | | | test to use uname. with this change a clean CVS copy will build using ./buildconf;./configure;make exactly like it should. Thanks Sascha. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86310 13f79535-47bb-0310-9956-ffa450edef68
* Add Convert-to-BSD-Makefiles-On-The-Fly systemSascha Schumann2000-09-221-0/+5
| | | | | | | | | | Note 1: Only needed for BSD/OS. Note 2: Invent better heuristic (timestamp checks for build/*.mk). Note 3: Conversion is currently one-way Note 4: Don't package on BSD/OS. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86284 13f79535-47bb-0310-9956-ffa450edef68
* Always delete generated_lists. This should cure problems with makesSascha Schumann2000-08-231-0/+2
| | | | | | | which don't handle the .PHONY target correctly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86142 13f79535-47bb-0310-9956-ffa450edef68
* Less verbose solution.Ben Laurie2000-03-191-5/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84799 13f79535-47bb-0310-9956-ffa450edef68
* Tru64 make uses the wrong directory for includes.Ben Laurie2000-03-181-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84793 13f79535-47bb-0310-9956-ffa450edef68
* Tru64 make gets confused by null argument!Ben Laurie2000-03-181-1/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84792 13f79535-47bb-0310-9956-ffa450edef68
* Allow arguments to buildconf. Makes cvsclean, etc. a bit easier.Manoj Kasichainula2000-03-161-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84772 13f79535-47bb-0310-9956-ffa450edef68
* Just make 'buildconf' run on BSD (there is a space after the hash-bang) andDirk-Willem van Gulik2000-03-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | added bogus INSTALL file plus some blurp in readme.mpm to point out that you really need libtool and autoconf (which need m4). On some platform's I found that I really HAD to use 'gmake' as the normal make would not grok it. So I am wondering if adding something like # Work out a correct 'make'. The issue is that we should use # 'gmake' which is called 'make' on some platforms, and 'gmake' # on some others. # GUESS=${MAKE:-make} if `(${GUESS} -v | grep "GNU Make") > /dev/null 2>&1 `; then # Looks like gmake. else GUESS=gmake if `${GUESS} -v | grep "GNU Make" > /dev/null 2>&1`; then echo Warning: Using 'gmake' instead of 'make'. else echo No 'gmake' found. Please set the MAKE environment echo variable first. exit 1 fi fi MAKE=${GUESS} export MAKE to 'buildconf' would be appropriate to detect this ?? Dw. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84749 13f79535-47bb-0310-9956-ffa450edef68
* These changes are committed together, because they depend on each other.Sascha Schumann2000-01-111-126/+2
| | | | | | | | | | | | - shared modules can be built in the tree - added support for --with-layout, uses APACI's config.layout - working 'make install' - working 'make depend' - working Pthreads checks - buildconf replaced git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84423 13f79535-47bb-0310-9956-ffa450edef68
* Fix IFS handling. This has the nice side effect that we do not need trSascha Schumann1999-12-301-3/+4
| | | | | | | anymore. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84374 13f79535-47bb-0310-9956-ffa450edef68
* --include-deps only seems to take advantage of pregeneratedManoj Kasichainula1999-12-221-1/+1
| | | | | | | | dependencies, and makes the build process refuse to generate them, so this removes it. It should be used when making a distribution, though. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84356 13f79535-47bb-0310-9956-ffa450edef68
* We don't need the capability to build an acconfig.h anymore; AC_DEFINEManoj Kasichainula1999-12-211-2/+0
| | | | | | | | provides everything we need for equivalent functionality. This change deletes the intrastructure that built acconfig.h.in before. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84344 13f79535-47bb-0310-9956-ffa450edef68
* Don't actually run ./configure in buildconf, it wastes lots of time ifManoj Kasichainula1999-12-201-3/+1
| | | | | | | we want to use ./configure's flags, among other things. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84332 13f79535-47bb-0310-9956-ffa450edef68
* We actually don't have to remove config.cache, becauseManoj Kasichainula1999-12-201-1/+0
| | | | | | | AC_CONFIG_SUBDIRS redirects APR's config.cache to point to Apache's. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84331 13f79535-47bb-0310-9956-ffa450edef68
* Put back the removing of config.cache. Also add a -f flag to the rm toManoj Kasichainula1999-12-201-1/+2
| | | | | | | eliminate a warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84328 13f79535-47bb-0310-9956-ffa450edef68
* Make Apache's configure script run APR's.Manoj Kasichainula1999-12-201-3/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84325 13f79535-47bb-0310-9956-ffa450edef68
* We need to run autoheader to compile APR.Manoj Kasichainula1999-12-201-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84324 13f79535-47bb-0310-9956-ffa450edef68
* Build APR, too.Ben Laurie1999-12-191-0/+25
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84318 13f79535-47bb-0310-9956-ffa450edef68
* The second part of the big autoconf patch, which actually adds autoconfManoj Kasichainula1999-11-301-0/+107
building to the tree. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84187 13f79535-47bb-0310-9956-ffa450edef68