diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-16 19:57:48 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-16 19:57:48 (GMT) |
commit | a2e0cf9108081663607706f661f411a5fcf86e1d (patch) | |
tree | 65f2a01f8d91c6d8a87f4720512534caa2430010 /Makefile.config.in | |
parent | 9bc8ddaf40d73647944592385bf56ece41046846 (diff) | |
download | swift-a2e0cf9108081663607706f661f411a5fcf86e1d.zip swift-a2e0cf9108081663607706f661f411a5fcf86e1d.tar.bz2 |
Make Swift compilation optional.
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 374bea5..08c6dd3 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -1,7 +1,14 @@ ################################################################################ # Configuration Settings +# These values are filled in by 'configure' ################################################################################ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +bindir=@bindir@ +libdir=@libdir@ +includedir=@includedir@ + @SET_MAKE@ MM=@MM@ CXX=@CONFIG_CXX@ @@ -16,4 +23,5 @@ HAVE_LIBXML=@CONFIG_HAVE_LIBXML@ HAVE_OPENSSL=@CONFIG_HAVE_OPENSSL@ WIN32=@CONFIG_WIN32@ MACOSX=@CONFIG_MACOSX@ +BUILD_SWIFT=@BUILD_SWIFT@ QMAKE=@QMAKE@ |