diff options
author | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-10-05 05:42:06 +0000 |
---|---|---|
committer | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-10-05 05:42:06 +0000 |
commit | e298cb3ff541451594e8737808e745f63eebbc0b (patch) | |
tree | 393c021b9f20562a071ffec936cc45e1e02d4020 /Makefile.in | |
parent | 77052c879518417fb46dba42d2c068def413d672 (diff) | |
download | libapr-e298cb3ff541451594e8737808e745f63eebbc0b.tar.gz |
Multiple build and configuration fixes
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
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index b8f8f271a..096d07beb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -13,6 +13,7 @@ CC=@CC@ CFLAGS=@CFLAGS@ @OPTIM@ LIBS=@LIBS@ LDFLAGS=@LDFLAGS@ $(LIBS) +AR=@AR@ RANLIB=@RANLIB@ # # Macros for supporting directories |