summaryrefslogtreecommitdiff
path: root/tests/config-flags.pm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/config-flags.pm')
-rw-r--r--tests/config-flags.pm19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/config-flags.pm b/tests/config-flags.pm
new file mode 100644
index 0000000..903c468
--- /dev/null
+++ b/tests/config-flags.pm
@@ -0,0 +1,19 @@
+# This is a -*-perl-*- script
+#
+# Set variables that were defined by configure, in case we need them
+# during the tests.
+
+%CONFIG_FLAGS = (
+ AM_LDFLAGS => '-Wl,--export-dynamic',
+ AR => 'ar',
+ CC => 'gcc',
+ CFLAGS => '-g -O2',
+ CPP => 'gcc -E',
+ CPPFLAGS => '',
+ GUILE_CFLAGS => '-pthread -I/usr/include/guile/2.0 ',
+ GUILE_LIBS => '-lguile-2.0 -lgc ',
+ LDFLAGS => '',
+ LIBS => '-ldl '
+);
+
+1;