1 # Process this file with autoconf to produce a configure script.
2 # Copyright (C) 2013-2020 Roland Lutz
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software Foundation,
16 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 AC_INIT([Xorn], [0.0], [bug-xorn@hedmen.org], [], [http://hedmen.org/xorn/])
22 AC_CONFIG_SRCDIR([src/cpython/storage/module.c])
23 AC_CONFIG_MACRO_DIR([m4])
25 AM_INIT_AUTOMAKE([-Wall -Werror silent-rules subdir-objects])
26 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
29 AX_PROG_CC_WARNING([cast_function_type], [cast-function-type])
34 PKG_CHECK_MODULES([PYTHON], [python-2.7 >= 2.7],, [
35 PKG_CHECK_MODULES([PYTHON], [python2 >= 2.7])
37 PKG_CHECK_MODULES([GUILE], [guile-2.2 >= 2.2.4])
39 AM_GNU_GETTEXT([external])
40 AM_GNU_GETTEXT_VERSION([0.19.8])
42 # gEDA is planning to move this to $datarootdir/geda-gaf
43 AC_MSG_CHECKING([where to look for gEDA shared data])
47 [--with-geda-datadir@<:@=DIR@:>@],
48 [where to look for shared gEDA data @<:@DATAROOTDIR/gEDA@:>@])], [
49 if test "x$with_geda_datadir" == "xno"
51 AC_MSG_RESULT([no default])
52 else if test "x$with_geda_datadir" = "xyes"
53 then gedadatadir="$datarootdir/gEDA"
54 else gedadatadir="$with_geda_datadir"
56 AC_MSG_RESULT([$gedadatadir])
59 gedadatadir="$datarootdir/gEDA"
60 AC_MSG_RESULT([$gedadatadir])
62 AS_IF([test "x$gedadatadir" = "x"],
63 [AC_MSG_ERROR([No gEDA shared data location given])])
64 AC_SUBST([gedadatadir])
66 # gEDA is planning to move this to $sysconfdir/geda-gaf
67 AC_MSG_CHECKING([where to look for gEDA rc files])
71 [--with-geda-sysconfdir@<:@=DIR@:>@],
72 [where to look for system-wide gEDA configuration @<:@SYSCONFDIR/gEDA@:>@])], [
73 if test "x$with_geda_sysconfdir" == "xno"
74 then gedasysconfdir=""
75 AC_MSG_RESULT([no default])
76 else if test "x$with_geda_sysconfdir" = "xyes"
77 then gedasysconfdir="$sysconfdir/gEDA"
78 else gedasysconfdir="$with_geda_sysconfdir"
80 AC_MSG_RESULT([$gedasysconfdir])
83 gedasysconfdir="$sysconfdir/gEDA"
84 AC_MSG_RESULT([$gedasysconfdir])
86 AC_SUBST([gedasysconfdir])
88 AC_CONFIG_HEADERS([config.h])
93 src/cpython/storage/Makefile
94 src/cpython/guile/Makefile
100 tests/netlist/Makefile