diff options
author | Matthias Paulmier <matthias.paulmier@etu.u-bordeaux.fr> | 2018-06-22 10:53:18 +0200 |
---|---|---|
committer | Matthias Paulmier <matthias.paulmier@etu.u-bordeaux.fr> | 2018-06-22 14:20:51 +0200 |
commit | 5ade8937a334b4e7ccd108d07b4b7bbf3f9e9705 (patch) | |
tree | 73f7d4651d547055b19487b11dc7729d17bf56f9 /lib/Automake | |
parent | ebe95b262ce95e7b9c19f75a71d217a0902cfabb (diff) | |
download | automake-5ade8937a334b4e7ccd108d07b4b7bbf3f9e9705.tar.gz |
Rearrange file exports and function prototypes
* automake.in: Rearrange function prototypes.
* lib: Remove useless exports.
Diffstat (limited to 'lib/Automake')
-rw-r--r-- | lib/Automake/Global.pm | 2 | ||||
-rw-r--r-- | lib/Automake/Requires.pm | 8 |
2 files changed, 4 insertions, 6 deletions
diff --git a/lib/Automake/Global.pm b/lib/Automake/Global.pm index b025fc9f3..25a703608 100644 --- a/lib/Automake/Global.pm +++ b/lib/Automake/Global.pm @@ -38,7 +38,7 @@ use vars qw (@ISA @EXPORT); @configure_deps $configure_deps_greatest_timestamp %configure_cond %extension_map @configure_dist_common %languages %link_languages %sourceflags %required_targets $am_file $configure_ac $ac_gettext_location - $package_version_location $required_conf_file_queue $relative_dir + $package_version_location $required_conf_file_queue $output_deps_greatest_timestamp $output_all $output_header $output_rules $output_trailer @include_stack @all @check @check_tests %clean_files %compile_clean_files %libtool_clean_directories @sources @dist_sources diff --git a/lib/Automake/Requires.pm b/lib/Automake/Requires.pm index dbb1c10ed..587a194b0 100644 --- a/lib/Automake/Requires.pm +++ b/lib/Automake/Requires.pm @@ -19,11 +19,9 @@ use vars '@ISA', '@EXPORT'; @ISA = qw (Exporter); -@EXPORT = qw (push_required_file required_file_check_or_copy - require_file_internal require_file require_file_with_macro - require_libsource_with_macro queue_required_file_check_or_copy - require_queued_file_check_or_copy require_conf_file - require_conf_file_with_macro require_build_directory +@EXPORT = qw (require_file require_file_with_macro + require_libsource_with_macro require_queued_file_check_or_copy + require_conf_file require_conf_file_with_macro require_build_directory require_build_directory_maybe); # push_required_file ($DIR, $FILE, $FULLFILE) |