summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2003-11-15 23:42:33 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2003-11-15 23:42:33 +0000
commitb30125501b1e85e2290f9642eab17a6aa3025183 (patch)
tree99a0cf4eb23f1386207be2b1265014b0ce77c201 /Makefile.in
parent4ef465c1f4a0c8cd3976ca4aa4b5b8a98f1216ef (diff)
downloadlibapr-b30125501b1e85e2290f9642eab17a6aa3025183.tar.gz
Backport from HEAD:
* configure.in: Remove lib_target_libs setting for AIX. * Makefile.in ($(TARGET_LIB)): Use ALL_LIBS instead of configured lib_target_libs value in $(LINK) line. * build/apr_threads.m4 (APR_PTHREAD_TRY_RUN): Rename macro from APR_PTHREAD_CHECK_COMPILE; take an actions argument. (APR_PTHREADS_CHECK): Rewrite to use APR_PTHREAD_TRY_RUN, fix broken use of caching, and always try looking for a library to add to LIBS as well as a flag for CFLAGS. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/APR_0_9_BRANCH@64745 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 6402e79ce..0c1bdc174 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -100,7 +100,7 @@ install: $(TARGET_LIB)
$(TARGET_LIB):
@for i in $(SUBDIRS); do objects="$$objects $$i/*.@so_ext@"; done ; \
- tmpcmd="$(LINK) @lib_target@ @lib_target_libs@"; \
+ tmpcmd="$(LINK) @lib_target@ $(ALL_LIBS)"; \
echo $$tmpcmd; \
$$tmpcmd && touch $@