summaryrefslogtreecommitdiff
path: root/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* Enable use of the new build directory.Roy T. Fielding2001-02-181-1/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61254 13f79535-47bb-0310-9956-ffa450edef68
* remove bogus dependenciesGreg Stein2001-02-171-1/+1
| | | | | | | | | The exports files are automatically rebuilt by a plain "make" at the top-level. "make foo.exports" won't do it, and we need to live with it until somebody finds a better way to do dynamic dependencies (portably). git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61244 13f79535-47bb-0310-9956-ffa450edef68
* Make exports.lo rebuild when it should.Ben Laurie2001-02-171-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61243 13f79535-47bb-0310-9956-ffa450edef68
* Use symbols to reduce hard-coded pathnames.Roy T. Fielding2001-02-161-10/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61237 13f79535-47bb-0310-9956-ffa450edef68
* - get libapr.la relinking when something has changedGreg Stein2001-01-111-7/+14
| | | | | | | | - toss MODULES from the Makefile; it wasn't doing anything useful (SUBDIRS is the key) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61049 13f79535-47bb-0310-9956-ffa450edef68
* Libtool takes care of the lib prefix so get rid of our own workaround.Brian Havard2001-01-101-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61039 13f79535-47bb-0310-9956-ffa450edef68
* Libtool-ize APR.Greg Stein2001-01-091-78/+16
| | | | | | | | | | | | | | | | | 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: https://svn.apache.org/repos/asf/apr/apr/trunk@61037 13f79535-47bb-0310-9956-ffa450edef68
* prevent duplicate exports. when srcdir is "." (or an absolute path to thatGreg Stein2000-12-311-4/+4
| | | | | | | | | same dir), then two copies of the include headers were processed. Instead, just process the true source dir, rather than those source headers *and* the headers created during the config/build. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60994 13f79535-47bb-0310-9956-ffa450edef68
* Drop the Perl dependency and use an awk script for creating apr.exports.Sascha Schumann2000-12-181-2/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60963 13f79535-47bb-0310-9956-ffa450edef68
* Fix VPATH support. APR builds now cleanly in a separate build directory.Sascha Schumann2000-12-151-2/+10
| | | | | | | Submitted by: Mo DeJong <mdejong@cygnus.com> git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60956 13f79535-47bb-0310-9956-ffa450edef68
* Get rid of "-maxdepth 0" on the find invocation. This breaks on Tru64Jeff Trawick2000-12-121-1/+1
| | | | | | | and FreeBSD, and I can't tell that it helps anyway. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60941 13f79535-47bb-0310-9956-ffa450edef68
* auto-rebuild the exports file when a header changesGreg Stein2000-12-121-7/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60936 13f79535-47bb-0310-9956-ffa450edef68
* Add a make target for test. This enters the test directory, does a makeRyan Bloom2000-12-031-0/+11
| | | | | | | | | | clean, and a make. Then it tries to run each test program. This doesn't work yet, because some of the test programs require user input. I will be working on this problem so that 'make test' can correctly tell somebody if APR is working properly on their platform. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60854 13f79535-47bb-0310-9956-ffa450edef68
* When running make_export.pl from the build scripts, invoke the perlJeff Trawick2000-12-011-1/+1
| | | | | | | | interpreter explicitly so that the path coded in make_export.pl doesn't have to be correct. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60834 13f79535-47bb-0310-9956-ffa450edef68
* Add a CHANGES log and make sure that apr.exports is removed whenRyan Bloom2000-12-011-1/+1
| | | | | | | make distclean is used. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60828 13f79535-47bb-0310-9956-ffa450edef68
* Add a make target to let us easily build the exports file for APR.Ryan Bloom2000-11-301-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60823 13f79535-47bb-0310-9956-ffa450edef68
* Multiple build and configuration fixesRyan Bloom2000-10-051-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Build process: -add datadir and localstatedir substitutions -fix layout name -fix logfilename misspelling -fix evaluation of installation dir variables and -replace $foobar by $(foobar) to be usefull in the makefile Cross compile: -add rules for cross-compiling in rules.mk. Okay, rule to check for $CC_FOR_BUILD is still missing -use CHECK_TOOL instead of CHECK_PROG for ranlib -add missing "AR=@AR@" to severaly Makefile.in's -cache result for "struct rlimit" -compile all helper programs with native and cross compiler and use the native version to generate header file PR: 6384 Submitted by: "R�diger" Kuhlmann <Tadu@gmx.de> Reviewed by: Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60545 13f79535-47bb-0310-9956-ffa450edef68
* Back out previous change, which attempted to minimize rebuildingJeff Trawick2000-09-131-3/+1
| | | | | | | | libapr.a. Unfortunately, libapr.a didn't get built at all times when it needed to be built (e.g., normal APR source file modification). git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60528 13f79535-47bb-0310-9956-ffa450edef68
* Current implementation of lib/apr/Makefile.in causes rebuildingJeff Trawick2000-09-011-1/+3
| | | | | | | | | | | | libapr.a at "make install" stage even if libapr.a is up to date after "make all" stage. It seems this patch is required to fix that behavior. Submitted by: Jun Kuriyama <kuriyama@imgsrc.co.jp> Reviewed by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60519 13f79535-47bb-0310-9956-ffa450edef68
* Add a rule to make the docs from APR's header files. And add a .cvsignoreRyan Bloom2000-07-231-0/+4
| | | | | | | so that those generated html pages are ignored by CVS. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60432 13f79535-47bb-0310-9956-ffa450edef68
* Detect libraries based on which platform configure is being run on.Ryan Bloom2000-06-271-0/+1
| | | | | | | | | | | | | Basically, Apache now runs APR's configure script first. APR's configure script has been setup to create a new file, APRVARS. APRVARS is basically all of the environment variables that APR wants to export to the program that is using it. This allows the calling program to "source" APRVARS and get those environment variables. Removed hack to make platforms use -ldl. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60268 13f79535-47bb-0310-9956-ffa450edef68
* Use $(MAKE) instead of make in Makefiles.Ryan Bloom2000-04-281-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59982 13f79535-47bb-0310-9956-ffa450edef68
* Cleanup more files when make distclean is used. This should be all theRyan Bloom2000-04-271-2/+3
| | | | | | | files that should be cleaned. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59967 13f79535-47bb-0310-9956-ffa450edef68
* Move apr_config.h and apr_config.hw to apr_private.h and apr_private.hw.Ryan Bloom2000-04-221-1/+1
| | | | | | | | This should make the fact that this is a private header file more obvious. This also updates all of the references to apr_config.h git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59924 13f79535-47bb-0310-9956-ffa450edef68
* even more distclean goodness (there's still more... time for zzz though)dgaudet2000-03-141-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59697 13f79535-47bb-0310-9956-ffa450edef68
* fix an dependency ordering problem which shows up when you use "make -j2dgaudet2000-03-021-2/+2
| | | | | | | | | | MAKE='make -j2'" on an SMP box. it's still not right if Makefile itself is out of date... i forget the trick to do that right. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59669 13f79535-47bb-0310-9956-ffa450edef68
* Add install and $(LIBAPR) targetSascha Schumann2000-01-111-4/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59589 13f79535-47bb-0310-9956-ffa450edef68
* R isn't portable. r pretty much isJim Jagielski2000-01-091-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59577 13f79535-47bb-0310-9956-ffa450edef68
* We now link on FreeBSD 2.2.x.Ben Laurie1999-12-221-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59551 13f79535-47bb-0310-9956-ffa450edef68
* Cleanup the Makefile for APR a bit. Get rid of some of the echos, andRyan Bloom1999-12-211-6/+2
| | | | | | | just display the commands as they are executed. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59550 13f79535-47bb-0310-9956-ffa450edef68
* Insert some output messages when creating the library.Ryan Bloom1999-12-211-0/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59547 13f79535-47bb-0310-9956-ffa450edef68
* Make a single APR library file.Brian Havard1999-10-241-5/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59411 13f79535-47bb-0310-9956-ffa450edef68
* Bring network code to the parameter order spec. This means contexts go last,Ryan Bloom1999-10-101-0/+1
| | | | | | | | and result parameters go first. Also fixed a small bug in the Makefile. We should be removing the libs dir when we do a distclean, we are now. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59303 13f79535-47bb-0310-9956-ffa450edef68
* This allows the build process for APR to make use of the extraDavid Reid1999-10-081-3/+2
| | | | | | | | flexability in the configure process. The MODULES and SUBDIRS are now generated by configure. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59287 13f79535-47bb-0310-9956-ffa450edef68
* Fix "make distclean" in APR: the Makefiles were not removed, because it's notRalf S. Engelschall1999-09-271-1/+11
| | | | | | | correct to use subdir_clean for the distclean target. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59248 13f79535-47bb-0310-9956-ffa450edef68
* Let's integrate APR better into the source tree, because it's more than boringRalf S. Engelschall1999-09-101-11/+11
| | | | | | | | | if one cannot even compile the beast easily (sorry Ryan that I do not agree with you here - I think that this is important and has to be done early or people will not work with the stuff)... git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59206 13f79535-47bb-0310-9956-ffa450edef68
* More changes to bring BeOS up to the UNIX APR level. Also a few changes toRyan Bloom1999-09-101-1/+0
| | | | | | | | | some test programs to make them more portable. Lastly, a work around for a BeOS bug that makes fork potentially dangerous. Submitted by: David Reid git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59205 13f79535-47bb-0310-9956-ffa450edef68
* The distclean target has to remove some config.* files.Ralf S. Engelschall1999-09-031-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59195 13f79535-47bb-0310-9956-ffa450edef68
* Fix build of APR on OS/2Brian Havard1999-08-281-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59172 13f79535-47bb-0310-9956-ffa450edef68
* Fix compilation bugs in APR. Move compiled libraries into a common libsRyan Bloom1999-08-271-4/+3
| | | | | | | directory after building. Removed (signal|cancel)_safe flags from context. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59170 13f79535-47bb-0310-9956-ffa450edef68
* A couple of changes required to make things work nicer with Apache. MainlyRyan Bloom1999-08-191-1/+5
| | | | | | | | moving the lib*.a when they are all built into a common dir, and putting some declarations in the right spots. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59166 13f79535-47bb-0310-9956-ffa450edef68
* Enhance directory step display to see what's going on...Ralf S. Engelschall1999-08-191-1/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59164 13f79535-47bb-0310-9956-ffa450edef68
* Initial revisionRyan Bloom1999-08-171-0/+71
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59151 13f79535-47bb-0310-9956-ffa450edef68