make-dfsg/tests/config-flags.pm
Manoj Srivastava 33f7944d96 Import make-dfsg_4.2.1.orig.tar.gz
[dgit import orig make-dfsg_4.2.1.orig.tar.gz]
2018-02-12 16:36:45 -08:00

19 lines
477 B
Perl

# 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;