~peter-pearse/ubuntu/natty/guile-1.8/prop001

« back to all changes in this revision

Viewing changes to libguile/eval.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2009-06-04 19:01:38 UTC
  • mfrom: (8.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090604190138-1ao3t6sj31cqvcfe
Tags: 1.8.6+1-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Build with -Wno-error.
  - Build with thread support. Some guile-using programs like autogen need it.
  - Add debian/guile-1.8-libs.shlibs: Thread support breaks ABI, bump the soname.
* Dropped changes:
  - libltdl3-dev -> libltdl7-dev: current libltdl-dev Provides: both.
  - debian/patches/libtool-ftbfs.diff: integrated upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
 
20
20
 
21
 
#define _GNU_SOURCE
22
 
 
23
21
/* This file is read twice in order to produce debugging versions of ceval and
24
22
 * scm_apply.  These functions, deval and scm_dapply, are produced when we
25
23
 * define the preprocessor macro DEVAL.  The file is divided into sections
29
27
/* SECTION: This code is compiled once.
30
28
 */
31
29
 
32
 
#if HAVE_CONFIG_H
 
30
#ifdef HAVE_CONFIG_H
33
31
#  include <config.h>
34
32
#endif
35
33