diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ChangeLog | 5 | ||||
-rw-r--r-- | tests/scripts/features/load | 2 | ||||
-rw-r--r-- | tests/scripts/features/loadapi | 2 |
3 files changed, 9 insertions, 0 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index 34e8cc2..0abe96f 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2013-05-14 Paul Smith <psmith@gnu.org> + + * scripts/features/loadapi: Add plugin_is_GPL_compatible symbol. + * scripts/features/load: Ditto. + 2013-05-13 Paul Smith <psmith@gnu.org> * scripts/features/output-sync (output_sync_set): Update for new diff --git a/tests/scripts/features/load b/tests/scripts/features/load index 78d5c51..2e3f263 100644 --- a/tests/scripts/features/load +++ b/tests/scripts/features/load @@ -20,6 +20,8 @@ print $F <<'EOF' ; #include "gnumake.h" +int plugin_is_GPL_compatible; + int testload_gmk_setup (gmk_floc *pos) { diff --git a/tests/scripts/features/loadapi b/tests/scripts/features/loadapi index 94a48a7..4976ce3 100644 --- a/tests/scripts/features/loadapi +++ b/tests/scripts/features/loadapi @@ -20,6 +20,8 @@ print $F <<'EOF' ; #include "gnumake.h" +int plugin_is_GPL_compatible; + static char * test_eval (const char *buf) { |