summaryrefslogtreecommitdiff
path: root/tests/config-flags.pm
diff options
context:
space:
mode:
authorManoj Srivastava <srivasta@debian.org>2016-01-16 22:37:08 -0800
committerManoj Srivastava <srivasta@debian.org>2016-01-16 22:37:08 -0800
commit103b17157918aca4ae5145892703aa5b0541ebcc (patch)
tree888424fece1f0f3f300441e87c2b2e6e3658d3f4 /tests/config-flags.pm
Import make-dfsg_4.1.orig.tar.gz
[dgit import orig make-dfsg_4.1.orig.tar.gz]
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 00000000..903c468a
--- /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;