summaryrefslogtreecommitdiff
path: root/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* Make clean, distclean, and extraclean consistently according to thefielding2001-04-111-3/+2
| | | | | | | | | | Gnu makefile guidelines. Submitted by: Justin Erenkrantz <jerenkrantz@ebuilt.com> Reviewed by: Roy Fielding git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61496 13f79535-47bb-0310-9956-ffa450edef68
* Cleanup the --with-libtool option. The test directory now compiles cleanlyrbb2001-04-091-1/+1
| | | | | | | when libtool is used. It doesn't work without libtool yet however. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61487 13f79535-47bb-0310-9956-ffa450edef68
* Make libtool a configure-time option. This is done with --without-libtool.rbb2001-04-061-4/+3
| | | | | | | The default is to use libtool git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61465 13f79535-47bb-0310-9956-ffa450edef68
* Use $(LIBTOOL) instead of libtoolrbb2001-04-051-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61459 13f79535-47bb-0310-9956-ffa450edef68
* Allow APR to be installed using `make install`rbb2001-04-031-2/+14
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61446 13f79535-47bb-0310-9956-ffa450edef68
* Enable use of the new build directory.fielding2001-02-181-1/+3
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61254 13f79535-47bb-0310-9956-ffa450edef68
* remove bogus dependenciesgstein2001-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: http://svn.apache.org/repos/asf/apr/apr/trunk@61244 13f79535-47bb-0310-9956-ffa450edef68
* Make exports.lo rebuild when it should.ben2001-02-171-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61243 13f79535-47bb-0310-9956-ffa450edef68
* Use symbols to reduce hard-coded pathnames.fielding2001-02-161-10/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61237 13f79535-47bb-0310-9956-ffa450edef68
* - get libapr.la relinking when something has changedgstein2001-01-111-7/+14
| | | | | | | | - toss MODULES from the Makefile; it wasn't doing anything useful (SUBDIRS is the key) git-svn-id: http://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.bjh2001-01-101-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61039 13f79535-47bb-0310-9956-ffa450edef68
* Libtool-ize APR.gstein2001-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: http://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 thatgstein2000-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: http://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.sascha2000-12-181-2/+3
| | | | git-svn-id: http://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.sascha2000-12-151-2/+10
| | | | | | | Submitted by: Mo DeJong <mdejong@cygnus.com> git-svn-id: http://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 Tru64trawick2000-12-121-1/+1
| | | | | | | and FreeBSD, and I can't tell that it helps anyway. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60941 13f79535-47bb-0310-9956-ffa450edef68
* auto-rebuild the exports file when a header changesgstein2000-12-121-7/+22
| | | | git-svn-id: http://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 makerbb2000-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: http://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 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
* Add a CHANGES log and make sure that apr.exports is removed whenrbb2000-12-011-1/+1
| | | | | | | make distclean is used. git-svn-id: http://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.rbb2000-11-301-0/+3
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60823 13f79535-47bb-0310-9956-ffa450edef68
* Multiple build and configuration fixesrbb2000-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: http://svn.apache.org/repos/asf/apr/apr/trunk@60545 13f79535-47bb-0310-9956-ffa450edef68
* Back out previous change, which attempted to minimize rebuildingtrawick2000-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: http://svn.apache.org/repos/asf/apr/apr/trunk@60528 13f79535-47bb-0310-9956-ffa450edef68
* Current implementation of lib/apr/Makefile.in causes rebuildingtrawick2000-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: http://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 .cvsignorerbb2000-07-231-0/+4
| | | | | | | so that those generated html pages are ignored by CVS. git-svn-id: http://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.rbb2000-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: http://svn.apache.org/repos/asf/apr/apr/trunk@60268 13f79535-47bb-0310-9956-ffa450edef68
* Use $(MAKE) instead of make in Makefiles.rbb2000-04-281-1/+1
| | | | git-svn-id: http://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 therbb2000-04-271-2/+3
| | | | | | | files that should be cleaned. git-svn-id: http://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.rbb2000-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: http://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: http://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: http://svn.apache.org/repos/asf/apr/apr/trunk@59669 13f79535-47bb-0310-9956-ffa450edef68
* Add install and $(LIBAPR) targetsascha2000-01-111-4/+10
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59589 13f79535-47bb-0310-9956-ffa450edef68
* R isn't portable. r pretty much isjim2000-01-091-2/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59577 13f79535-47bb-0310-9956-ffa450edef68
* We now link on FreeBSD 2.2.x.ben1999-12-221-0/+1
| | | | git-svn-id: http://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, andrbb1999-12-211-6/+2
| | | | | | | just display the commands as they are executed. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59550 13f79535-47bb-0310-9956-ffa450edef68
* Insert some output messages when creating the library.rbb1999-12-211-0/+4
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59547 13f79535-47bb-0310-9956-ffa450edef68
* Make a single APR library file.bjh1999-10-241-5/+7
| | | | git-svn-id: http://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,rbb1999-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: http://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 extradreid1999-10-081-3/+2
| | | | | | | | flexability in the configure process. The MODULES and SUBDIRS are now generated by configure. git-svn-id: http://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 notrse1999-09-271-1/+11
| | | | | | | correct to use subdir_clean for the distclean target. git-svn-id: http://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 boringrse1999-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: http://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 torbb1999-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: http://svn.apache.org/repos/asf/apr/apr/trunk@59205 13f79535-47bb-0310-9956-ffa450edef68
* The distclean target has to remove some config.* files.rse1999-09-031-0/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59195 13f79535-47bb-0310-9956-ffa450edef68
* Fix build of APR on OS/2bjh1999-08-281-1/+1
| | | | git-svn-id: http://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 libsrbb1999-08-271-4/+3
| | | | | | | directory after building. Removed (signal|cancel)_safe flags from context. git-svn-id: http://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. Mainlyrbb1999-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: http://svn.apache.org/repos/asf/apr/apr/trunk@59166 13f79535-47bb-0310-9956-ffa450edef68
* Enhance directory step display to see what's going on...rse1999-08-191-1/+7
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59164 13f79535-47bb-0310-9956-ffa450edef68
* Initial revisionrbb1999-08-171-0/+71
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59151 13f79535-47bb-0310-9956-ffa450edef68