You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bj...@apache.org on 2001/05/20 07:21:08 UTC

cvs commit: apr/build make_export.awk

bjh         01/05/19 22:21:08

  Modified:    build    make_export.awk
  Log:
  Include recently added ap_hook_get_* functions in list of exports.
  
  Revision  Changes    Path
  1.3       +1 -0      apr/build/make_export.awk
  
  Index: make_export.awk
  ===================================================================
  RCS file: /home/cvs/apr/build/make_export.awk,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- make_export.awk	2001/03/26 10:22:33	1.2
  +++ make_export.awk	2001/05/20 05:21:08	1.3
  @@ -56,6 +56,7 @@
   /^[ \t]*AP_DECLARE_HOOK[(][^,]+,[a-z_]+,.+[)]$/ {
   	split($0, args, ",");
   	add_symbol("ap_hook_" args[2]);
  +	add_symbol("ap_hook_get_" args[2]);
   	add_symbol("ap_run_" args[2]);
   }