summaryrefslogtreecommitdiff
path: root/tests/config-flags.pm
blob: 903c468a333093cf49e76c74a915f699a881ba55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;