rbb 01/07/12 20:51:28
Modified: . STATUS
uri Makefile.in
Log:
Fix the funny make dependency between apr_uri.c and
uri_delims.h that causes it to always build apr_uri.c whether
it needs to or not.
Revision Changes Path
1.32 +1 -7 apr-util/STATUS
Index: STATUS
===================================================================
RCS file: /home/cvs/apr-util/STATUS,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -b -w -u -r1.31 -r1.32
--- STATUS 2001/07/13 00:13:31 1.31
+++ STATUS 2001/07/13 03:51:20 1.32
@@ -1,5 +1,5 @@
APRUTIL LIBRARY STATUS:
-*-text-*-
-Last modified at [$Date: 2001/07/13 00:13:31 $]
+Last modified at [$Date: 2001/07/13 03:51:20 $]
Release:
2.0a9 : released December 12, 2000
@@ -27,12 +27,6 @@
including the possibility of re-opening the file into the correct
pool and morphing the mmap bucket back down to a file bucket.
- * Some funny make dependency is happening with apr_uri.c and
- uri_delims.h that causes it to always build apr_uri.c whether
- it needs to or not. (This is slightly better than the previous
- behavior which caused it not to build uri_delims.h when it needed
- to.)
-
Other bugs that need fixing:
1.8 +4 -4 apr-util/uri/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/apr-util/uri/Makefile.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -b -w -u -r1.7 -r1.8
--- Makefile.in 2001/07/09 02:31:00 1.7
+++ Makefile.in 2001/07/13 03:51:26 1.8
@@ -1,5 +1,5 @@
-TARGETS = uri_delims.h apr_uri.lo
-CLEAN_TARGETS = gen_uri_delims uri_delims.h
+TARGETS = $(top_builddir)/include/private/uri_delims.h apr_uri.lo
+CLEAN_TARGETS = gen_uri_delims $(top_builddir)/include/private/uri_delims.h
# bring in rules.mk for standard functionality
@INCLUDE_RULES@
@@ -8,7 +8,7 @@
gen_uri_delims: $(gen_uri_delims_OBJECTS)
$(LINK) $(EXTRA_LDFLAGS) $(gen_uri_delims_OBJECTS) $(EXTRA_LIBS)
-apr_uri.lo: uri_delims.h
+apr_uri.lo: $(top_builddir)/include/private/uri_delims.h
-uri_delims.h: gen_uri_delims
+$(top_builddir)/include/private/uri_delims.h: gen_uri_delims
./gen_uri_delims > $(top_builddir)/include/private/uri_delims.h