forked from cslarsen/jp2a
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve configure.ac and Makefile.am to make autoconf-archive optional
autoconf-archive provides macros that are used to build documentation with doxygen. To build the jp2a program itself autoconf-archive was previously required even if that did not involve using these macros. Now jp2a can be built even when these macros are not present.
- Loading branch information
Showing
3 changed files
with
28 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,11 @@ | |
|
||
AC_PREREQ([2.69]) | ||
AC_INIT([jp2a],[1.2.0],[[email protected]], [jp2a], [https://github.com/Talinx/jp2a]) | ||
DX_INIT_DOXYGEN([jp2a]) | ||
m4_ifdef([DX_INIT_DOXYGEN], | ||
[doc=true | ||
DX_INIT_DOXYGEN([jp2a])],[doc=false]) | ||
AM_INIT_AUTOMAKE(dist-bzip2 dist-zip) | ||
AM_CONDITIONAL([DOC], [test x$doc = xtrue]) | ||
AC_CONFIG_SRCDIR(src/jp2a.c) | ||
AC_CONFIG_HEADERS([config.h]) | ||
AC_CONFIG_FILES([Makefile src/Makefile]) | ||
|