-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfigure.ac
More file actions
33 lines (30 loc) · 819 Bytes
/
Copy pathconfigure.ac
File metadata and controls
33 lines (30 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
dnl Process this file with autoconf to produce a configure script
AC_INIT([esidl], [0.4.1])
AC_CONFIG_AUX_DIR(.)
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE([foreign no-define])
AC_PROG_YACC
AC_PROG_CXX
AC_PROG_CC
AM_PROG_AS
AC_PROG_RANLIB
AC_PROG_LEX
AC_CONFIG_FILES([
esidl.spec
debian/changelog
Makefile
testsuite/Makefile
testsuite/runtime/Makefile
java/Makefile
])
AC_PATH_PROG([HELP2MAN], [help2man])
if test x"$HELP2MAN" = x; then
AC_MSG_ERROR([Cannot find help2man.])
fi
AC_MSG_CHECKING([whether to generate Java interfaces])
AC_ARG_ENABLE(java, AC_HELP_STRING([--enable-java],
[enable Java interface generation [[default=no]]]),
[], [enable_java="no"])
AC_MSG_RESULT([$enable_java])
AM_CONDITIONAL(ENABLE_JAVA, test "$enable_java" = "yes")
AC_OUTPUT