summaryrefslogtreecommitdiff
path: root/buildconf
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagAPR_1_0_0_RC3(no author)2004-07-071-16/+0
| | | | | | 'APR_1_0_0_RC3'. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/tags/APR_1_0_0_RC3@65267 13f79535-47bb-0310-9956-ffa450edef68
* Add an RPM spec file derived from Fedora Core.minfrin2004-07-011-0/+16
| | | | | | | | | | PR: Obtained from: Submitted by: Reviewed by: jorton git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65255 13f79535-47bb-0310-9956-ffa450edef68
* Add libtool* as installed by FreeBSD ports. No 'libtool' is installed, alljerenkrantz2004-06-061-1/+1
| | | | | | | are suffixed by version number. Prefer 1.5 over 1.4, if available. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65170 13f79535-47bb-0310-9956-ffa450edef68
* Relicense.jorton2004-02-281-49/+11
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64930 13f79535-47bb-0310-9956-ffa450edef68
* First whack at switching to a single top-level make. This adds a dependencygstein2004-02-051-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | upon Python at packaging time, but not at end-user config/build time. As far as I can tell, the build continues to function properly. (out-of-dir config/make not tested, and apr-iconv prolly needs some work) The buildconf scripts now generate a build-outputs.mk file which is included by the root's Makefile (via the build/gen-build.py script). bulid-outputs.mk specifies all of the various files present in the distribution. The top-level Makefiles were simplified to use an $(OBJECTS) symbol rather than 'find'ing them. Similarly, a $(HEADERS) symbol is used for the exports. The corresponding delete-* targets were eliminated since we have a precise set of inputs. The subdirs' Makefiles were removed since they are no longer called/used. The apr-util/uri Makefile was responsible for compiling a C program to generate the uri_delims.h file. That process was replaced by a Python script to generate the header (called by buildconf). The .c and .dsp were left for the Windows build to continue, but that should be revamped. build/apr_rules.mk was revamped somewhat to avoid recursion, but a lot of cleanup is still needed. Much of the recursive/local/x- logic is no longer needed and can be elimianated. rules.mk was created for inclusion by N makefiles, but that isn't really true any more, so it could probably be tossed (caveat: test/Makefile). Saved for a phase 2. Some additional work was added to properly clean up files in */build/, rather than relying on a makefile in there. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64891 13f79535-47bb-0310-9956-ffa450edef68
* Fix build with recent libtool HEAD:jorton2004-01-151-7/+16
| | | | | | | | | | * buildconf: Use the libtool.m4 which libtoolize copies into the cwd, if found. Move ltsugar.m4 into build if found. * configure.in: Pick up ltsugar.m4. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64873 13f79535-47bb-0310-9956-ffa450edef68
* Use the location of libtool.m4 given in the LIBTOOL_M4 environmentjorton2003-06-171-1/+3
| | | | | | | variable, if set. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64539 13f79535-47bb-0310-9956-ffa450edef68
* Update copyright notices to 2003.thommay2003-01-011-1/+1
| | | | | | | No functional changes git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64251 13f79535-47bb-0310-9956-ffa450edef68
* Enable autoconf/autoheader to be redefined by users.sascha2002-05-151-3/+3
| | | | | | | Submitted by: Joe Orton <joe@manyfish.co.uk> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63400 13f79535-47bb-0310-9956-ffa450edef68
* Update our copyright for this year.fielding2002-03-131-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63117 13f79535-47bb-0310-9956-ffa450edef68
* autoconf 2.52 creates a temporary 'autom4te.cache' directory.striker2001-10-291-0/+3
| | | | | | | | | | | Remove it after buildconf, or when someone runs autoconf manually, remove it on make clean. Submitted by: Joe Orton <joe@manyfish.co.uk> [buildconf] Suggestions by: Greg Stein [make clean] git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62472 13f79535-47bb-0310-9956-ffa450edef68
* Remove the generated libtool files. This assists with switching betweengstein2001-10-031-1/+4
| | | | | | | | | libtool 1.3 and libtool 1.4. Submitted by: Mo DeJong <supermo@bayarea.net> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62393 13f79535-47bb-0310-9956-ffa450edef68
* Toss an old (commented out) reference to MM.jwoolley2001-09-231-3/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62361 13f79535-47bb-0310-9956-ffa450edef68
* More fallout from MM's departure.jerenkrantz2001-08-131-1/+2
| | | | | | | | | | - Fix buildconf to not build MM's configure - Add the line in apr.h.in for MAP_ANON mmap usage - Fix munmap to have the right parameters - Add APR_WANT_MEMFUNC to import memset in shmem.c. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62156 13f79535-47bb-0310-9956-ffa450edef68
* Quickly parse the libtool.m4 file to use $(apr_builddir) insteadrbb2001-07-301-1/+1
| | | | | | | of $(top_builddir). This allows apr-util to use APR's build directory. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62058 13f79535-47bb-0310-9956-ffa450edef68
* rm -f is sufficient -- no need to check existence first.fielding2001-05-011-4/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61572 13f79535-47bb-0310-9956-ffa450edef68
* Little portability hack.. cp -f ain't portablejim2001-04-021-1/+6
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61430 13f79535-47bb-0310-9956-ffa450edef68
* Revert last change -- I forgot that buildconf is run before we createfielding2001-03-311-32/+27
| | | | | | | a release tarball, so it can't be OS-specific. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61399 13f79535-47bb-0310-9956-ffa450edef68
* Make it easier to replace libtool on OS/2 by copying libtool.m4 intofielding2001-03-311-27/+32
| | | | | | | | | aclocal.m4 rather than distributing it under its own name. This way we can copy a replacement for libtool.m4 on those platforms that don't work well with libtool. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61396 13f79535-47bb-0310-9956-ffa450edef68
* I forgot that people might pick up an old aclocal.m4 by mistake,fielding2001-03-241-0/+4
| | | | | | | which would cause useless build errors. Remove it for a while. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61383 13f79535-47bb-0310-9956-ffa450edef68
* Move the build tool check into APR and improve the comments.fielding2001-03-241-4/+76
| | | | | | | This is in preparation of APR being the center of all builds. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61382 13f79535-47bb-0310-9956-ffa450edef68
* Remove the need for aclocal.m4 by copying libtool.m4 into build andfielding2001-03-241-19/+5
| | | | | | | directly including the macro files into configure.in. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61380 13f79535-47bb-0310-9956-ffa450edef68
* Enable use of the new build directory.fielding2001-02-181-2/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61254 13f79535-47bb-0310-9956-ffa450edef68
* Moved hints.m4, apr_common.m4, and helpers/apr-conf.m4 into thefielding2001-02-171-3/+11
| | | | | | | | | new build directory as apr_hints.m4, apr_common.m4, apr_network.m4, and apr_threads.m4. None of the macro code has changed for this pass -- only the location. More changes to come. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61241 13f79535-47bb-0310-9956-ffa450edef68
* fix a typo??trawick2001-02-071-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61192 13f79535-47bb-0310-9956-ffa450edef68
* Check for glibtoolize as well as libtoolize.wsanchez2001-02-071-3/+3
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61191 13f79535-47bb-0310-9956-ffa450edef68
* Libtool-ize APR.gstein2001-01-091-0/+28
| | | | | | | | | | | | | | | | | To simplify the task, I also shifted the Makefiles to include a rules.mk (based on APRUTIL's with a few tweaks). Still needs some work to remove the INCLUDES setup in all the Makefiles (these can be shared). buildconf now does more work (and generates some output) aclocal.m4 is based on a number of M4 files, rather than standalone apr/test/ has been updated but is probably broken in a few ways. objs/ is now gone. we link directly from the .lo files. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61037 13f79535-47bb-0310-9956-ffa450edef68
* auto-rebuild the exports file when a header changesgstein2000-12-121-4/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60936 13f79535-47bb-0310-9956-ffa450edef68
* When running make_export.pl from the build scripts, invoke the perltrawick2000-12-011-1/+1
| | | | | | | | interpreter explicitly so that the path coded in make_export.pl doesn't have to be correct. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60834 13f79535-47bb-0310-9956-ffa450edef68
* Stop generating the exports file with a make target, instead just do itrbb2000-12-011-0/+3
| | | | | | | at configure time. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60830 13f79535-47bb-0310-9956-ffa450edef68
* Make this script recognizable as executable on a non-unix file system.bjh2000-08-061-0/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60482 13f79535-47bb-0310-9956-ffa450edef68
* Allow APR to build without Apache. buildconf builds the configure scriptsrbb2000-07-141-0/+3
for APR and MM. Config.guess and Config.sub have been moved to helpers/ git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60373 13f79535-47bb-0310-9956-ffa450edef68