- added manpage for OpenOCD (thanks to Uwe Hermann)
[openocd.git] / configure.in
1 AC_INIT(configure.in)
2
3 AC_SEARCH_LIBS([ioperm], [ioperm])
4
5 AC_CANONICAL_HOST
6
7 AC_CHECK_HEADERS(sys/param.h)
8
9 AC_C_BIGENDIAN
10
11 AC_CHECK_FUNCS(strndup)
12 AC_CHECK_FUNCS(strnlen)
13 AC_CHECK_FUNCS(gettimeofday)
14 AC_CHECK_FUNCS(usleep)
15
16 build_bitbang=no
17 is_cygwin=no
18 is_mingw=no
19 is_win32=no
20
21 AC_ARG_ENABLE(parport,
22 AS_HELP_STRING([--enable-parport], [Enable building the pc parallel port driver]),
23 [build_parport=$enableval], [build_parport=no])
24
25 AC_ARG_ENABLE(parport_ppdev,
26 AS_HELP_STRING([--enable-parport_ppdev], [Enable use of ppdev (/dev/parportN) for parport]),
27 [parport_use_ppdev=$enableval], [parport_use_ppdev=no])
28
29 AC_ARG_ENABLE(ft2232_libftdi,
30 AS_HELP_STRING([--enable-ft2232_libftdi], [Enable building support for FT2232 based devices using the libftdi driver]),
31 [build_ft2232_libftdi=$enableval], [build_ft2232_libftdi=no])
32
33 AC_ARG_ENABLE(ft2232_ftd2xx,
34 AS_HELP_STRING([--enable-ft2232_ftd2xx], [Enable building support for FT2232 based devices using the FTD2XX driver]),
35 [build_ft2232_ftd2xx=$enableval], [build_ft2232_ftd2xx=no])
36
37 AC_ARG_ENABLE(amtjtagaccel,
38 AS_HELP_STRING([--enable-amtjtagaccel], [Enable building the Amontec JTAG-Accelerator driver]),
39 [build_amtjtagaccel=$enableval], [build_amtjtagaccel=no])
40
41 AC_ARG_ENABLE(ep93xx,
42 AS_HELP_STRING([--enable-ep93xx], [Enable building support for EP93xx based SBCs]),
43 [build_ep93xx=$enableval], [build_ep93xx=no])
44
45 AC_ARG_ENABLE(at91rm9200,
46 AS_HELP_STRING([--enable-at91rm9200], [Enable building support for AT91RM9200 based SBCs]),
47 [build_at91rm9200=$enableval], [build_at91rm9200=no])
48
49 AC_ARG_ENABLE(gw16012,
50 AS_HELP_STRING([--enable-gw16012], [Enable building support for the Gateworks GW16012 JTAG Programmer]),
51 [build_gw16012=$enableval], [build_gw16012=no])
52
53 AC_ARG_WITH(ftd2xx,
54 [AS_HELP_STRING(--with-ftd2xx,
55 [Where libftd2xx can be found <default=search>])],
56 [],
57 with_ftd2xx=search)
58
59 case $host in
60 *-*-cygwin*)
61 is_win32=yes
62
63 AC_ARG_ENABLE(parport_giveio,
64 AS_HELP_STRING([--enable-parport_giveio], [Enable use of giveio for parport instead of ioperm]),
65 [parport_use_giveio=$enableval], [parport_use_giveio=no])
66
67 AC_COMPILE_IFELSE(AC_LANG_PROGRAM([],[return __MINGW32__;]),[is_mingw=yes],[is_mingw=no])
68 if test $is_mingw = yes; then
69 AC_DEFINE(IS_MINGW, 1, [1 if building for MinGW.])
70 parport_use_giveio=yes
71 is_cygwin=no
72 else
73 is_cygwin=yes
74 AC_DEFINE(IS_CYGWIN, 1, [1 if building for Cygwin.])
75 fi
76
77 AC_DEFINE(IS_WIN32, 1, [1 if building for Win32.])
78 ;;
79 *-*-mingw*)
80 is_mingw=yes
81 is_win32=yes
82
83 parport_use_giveio=yes
84
85 AC_DEFINE(IS_MINGW, 1, [1 if building for MinGW.])
86 AC_DEFINE(IS_WIN32, 1, [1 if building for Win32.])
87 ;;
88 *)
89 parport_use_giveio=no
90 AC_DEFINE(IS_CYGWIN, 0, [0 if not building for Cygwin.])
91 AC_DEFINE(IS_WIN32, 0, [0 if not building for Win32.])
92 ;;
93 esac
94
95 if test $build_parport = yes; then
96 build_bitbang=yes
97 AC_DEFINE(BUILD_PARPORT, 1, [1 if you want parport.])
98 else
99 AC_DEFINE(BUILD_PARPORT, 0, [0 if you don't want parport.])
100 fi
101
102 if test $build_ep93xx = yes; then
103 build_bitbang=yes
104 AC_DEFINE(BUILD_EP93XX, 1, [1 if you want ep93xx.])
105 else
106 AC_DEFINE(BUILD_EP93XX, 0, [0 if you don't want ep93xx.])
107 fi
108
109 if test $build_at91rm9200 = yes; then
110 build_bitbang=yes
111 AC_DEFINE(BUILD_AT91RM9200, 1, [1 if you want at91rm9200.])
112 else
113 AC_DEFINE(BUILD_AT91RM9200, 0, [0 if you don't want at91rm9200.])
114 fi
115
116 if test $parport_use_ppdev = yes; then
117 AC_DEFINE(PARPORT_USE_PPDEV, 1, [1 if you want parport to use ppdev.])
118 else
119 AC_DEFINE(PARPORT_USE_PPDEV, 0, [0 if you don't want parport to use ppdev.])
120 fi
121
122 if test $parport_use_giveio = yes; then
123 AC_DEFINE(PARPORT_USE_GIVEIO, 1, [1 if you want parport to use giveio.])
124 else
125 AC_DEFINE(PARPORT_USE_GIVEIO, 0, [0 if you don't want parport to use giveio.])
126 fi
127
128 if test $build_bitbang = yes; then
129 AC_DEFINE(BUILD_BITBANG, 1, [1 if you want a bitbang interface.])
130 else
131 AC_DEFINE(BUILD_BITBANG, 0, [0 if you don't want a bitbang interface.])
132 fi
133
134 if test $build_ft2232_libftdi = yes; then
135 AC_DEFINE(BUILD_FT2232_LIBFTDI, 1, [1 if you want libftdi ft2232.])
136 else
137 AC_DEFINE(BUILD_FT2232_LIBFTDI, 0, [0 if you don't want libftdi ft2232.])
138 fi
139
140 if test $build_ft2232_ftd2xx = yes; then
141 AC_DEFINE(BUILD_FT2232_FTD2XX, 1, [1 if you want ftd2xx ft2232.])
142 else
143 AC_DEFINE(BUILD_FT2232_FTD2XX, 0, [0 if you don't want ftd2xx ft2232.])
144 fi
145
146 if test $build_amtjtagaccel = yes; then
147 AC_DEFINE(BUILD_AMTJTAGACCEL, 1, [1 if you want the Amontec JTAG-Accelerator driver.])
148 else
149 AC_DEFINE(BUILD_AMTJTAGACCEL, 0, [0 if you don't want the Amontec JTAG-Accelerator driver.])
150 fi
151
152 if test $build_gw16012 = yes; then
153 AC_DEFINE(BUILD_GW16012, 1, [1 if you want the Gateworks GW16012 driver.])
154 else
155 AC_DEFINE(BUILD_GW16012, 0, [0 if you don't want the Gateworks GW16012 driver.])
156 fi
157
158 AM_CONFIG_HEADER(config.h)
159 AM_INIT_AUTOMAKE(openocd, 0.1)
160
161 AM_CONDITIONAL(PARPORT, test $build_parport = yes)
162 AM_CONDITIONAL(GIVEIO, test $parport_use_giveio = yes)
163 AM_CONDITIONAL(EP93XX, test $build_ep93xx = yes)
164 AM_CONDITIONAL(AT91RM9200, test $build_at91rm9200 = yes)
165 AM_CONDITIONAL(BITBANG, test $build_bitbang = yes)
166 AM_CONDITIONAL(FT2232_LIBFTDI, test $build_ft2232_libftdi = yes)
167 AM_CONDITIONAL(FT2232_FTD2XX, test $build_ft2232_ftd2xx = yes)
168 AM_CONDITIONAL(AMTJTAGACCEL, test $build_amtjtagaccel = yes)
169 AM_CONDITIONAL(GW16012, test $build_gw16012 = yes)
170 AM_CONDITIONAL(IS_CYGWIN, test $is_cygwin = yes)
171 AM_CONDITIONAL(IS_MINGW, test $is_mingw = yes)
172 AM_CONDITIONAL(IS_WIN32, test $is_win32 = yes)
173 AM_CONDITIONAL(FTD2XXDIR, test $with_ftd2xx != search)
174
175 AC_LANG_C
176 AC_PROG_CC
177 AC_PROG_RANLIB
178
179 AC_SUBST(WITH_FTD2XX, $with_ftd2xx)
180
181 AC_OUTPUT(Makefile src/Makefile src/helper/Makefile src/jtag/Makefile src/xsvf/Makefile src/target/Makefile src/server/Makefile src/flash/Makefile src/pld/Makefile)

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)