You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2004/05/27 22:12:47 UTC

cvs commit: apr Makefile.in

jorton      2004/05/27 13:12:47

  Modified:    .        Makefile.in
  Log:
  * Makefile.in: Rename export_vars.h to export_vars.c to fix build on
  SINIX, where cc -E fails on header files.
  
  PR: 29169
  
  Revision  Changes    Path
  1.98      +5 -5      apr/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr/Makefile.in,v
  retrieving revision 1.97
  retrieving revision 1.98
  diff -d -u -r1.97 -r1.98
  --- Makefile.in	10 Mar 2004 18:48:25 -0000	1.97
  +++ Makefile.in	27 May 2004 20:12:47 -0000	1.98
  @@ -32,13 +32,13 @@
   # Rules for building specific targets, starting with 'all' for
   # building the entire package.
   #
  -TARGETS = $(TARGET_LIB) export_vars.h apr.exp
  +TARGETS = $(TARGET_LIB) export_vars.c apr.exp
   
   # bring in rules.mk for standard functionality
   @INCLUDE_RULES@
   @INCLUDE_OUTPUTS@
   
  -CLEAN_TARGETS = apr-config.out apr.exp exports.c export_vars.h .make.dirs
  +CLEAN_TARGETS = apr-config.out apr.exp exports.c export_vars.c .make.dirs
   DISTCLEAN_TARGETS = config.cache config.log config.status \
   	include/apr.h include/arch/unix/apr_private.h \
   	libtool apr-config build/apr_rules.mk
  @@ -100,15 +100,15 @@
   exports.c: $(HEADERS)
   	$(AWK) -f $(top_srcdir)/build/make_exports.awk $(HEADERS) > $@
   
  -export_vars.h: $(HEADERS)
  +export_vars.c: $(HEADERS)
   	$(AWK) -f $(top_srcdir)/build/make_var_export.awk $(HEADERS) > $@
   
  -apr.exp: exports.c export_vars.h
  +apr.exp: exports.c export_vars.c
   	@echo "#! lib@APR_LIBNAME@.so" > $@
   	@echo "* This file was AUTOGENERATED at build time." >> $@
   	@echo "* Please do not edit by hand." >> $@
   	$(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) exports.c | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$$/\1/' >> $@
  -	$(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.h | sed -e 's/^\#[^!]*//' | sed -e '/^$$/d' >> $@
  +	$(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.c | sed -e 's/^\#[^!]*//' | sed -e '/^$$/d' >> $@
   
   dox:
   	doxygen $(top_srcdir)/docs/doxygen.conf