Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
3f06cbfb
...
3f06cbfbe3d554304860be4373a2e124c8e1af1e
authored
2004-09-18 10:10:24 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bugfix
1 parent
1c161cd1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
1 deletions
configure.ac
configure.ac
View file @
3f06cbf
...
...
@@ -27,6 +27,7 @@ AC_PREREQ(2.59)
dnl Check for programs
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_LN_S
AC_LIBTOOL_DLOPEN
...
...
@@ -429,7 +430,7 @@ AH_TEMPLATE(HAVE_MYSQL,[Define if you have libmysql])
AH_TEMPLATE(HAVE_PGSQL,[Define if you have libpq])
if test x"$use_mysql" = x"yes" -a x"$use_postgres" = x"yes"; then
AC_MSG_ERROR(
Use either --with-mysql or --with-postgres, not both
)
AC_MSG_ERROR(
[Use either --with-mysql or --with-postgres, not both]
)
else
if test x"$use_mysql" = x"yes"; then
AC_CHECK_HEADER(mysql/mysql.h,
...
...
@@ -683,6 +684,18 @@ if test x"$useguile" = x"yes"; then
],[useguile=no])
fi
dnl Check whether to enable C++ support
if test -z "$CXX"; then
:
else
AC_SUBST(MU_CXX_LIBS)
AC_SUBST(MU_CXX_PROGS)
AC_SUBST(MU_CXX_INCLUDES)
MU_CXX_LIBS='$(MU_CXX_LIBS)'
MU_CXX_PROGS='$(MU_CXX_PROGS)'
MU_CXX_INCLUDES='$(MU_CXX_INCLUDES)'
fi
dnl Check for Emacs site-lisp directory
AM_PATH_LISPDIR
...
...
@@ -756,6 +769,11 @@ AC_CONFIG_FILES([Makefile
include/mailutils/sys/Makefile
intl/Makefile
lib/Makefile
libmu_cpp/Makefile
libmu_cpp/examples/Makefile
libmu_cpp/include/Makefile
libmu_cpp/include/mailutils/Makefile
libmu_cpp/include/mailutils/c++/Makefile
libmu_scm/Makefile
libsieve/Makefile
libsieve/extensions/Makefile
...
...
Please
register
or
sign in
to post a comment