forked from opnsense/src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Obtained from: https://github.com/Juniper/libxo/tree/0.3.2 Requested by: Phil Shafer <[email protected]> This import incorporates local change 279966. Local change 276260 has been merged-in.
- Loading branch information
Marcel Moolenaar
authored and
Marcel Moolenaar
committed
Apr 27, 2015
1 parent
483117a
commit 788ca34
Showing
58 changed files
with
4,295 additions
and
1,265 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
# | ||
|
||
AC_PREREQ(2.2) | ||
AC_INIT([libxo], [0.2.0], [[email protected]]) | ||
AC_INIT([libxo], [0.3.2], [[email protected]]) | ||
AM_INIT_AUTOMAKE([-Wall -Werror foreign -Wno-portability]) | ||
|
||
# Support silent build rules. Requires at least automake-1.11. | ||
|
@@ -133,6 +133,14 @@ AC_ARG_ENABLE([debug], | |
AC_MSG_RESULT([$LIBXO_DEBUG]) | ||
AM_CONDITIONAL([LIBXO_DEBUG], [test "$LIBXO_DEBUG" != "no"]) | ||
|
||
AC_MSG_CHECKING([whether to build with text-only rendering]) | ||
AC_ARG_ENABLE([text-only], | ||
[ --enable-text-only Turn on text-only rendering], | ||
[LIBXO_TEXT_ONLY=yes; AC_DEFINE([LIBXO_TEXT_ONLY], [1], [Enable text-only rendering])], | ||
[LIBXO_TEXT_ONLY=no]) | ||
AC_MSG_RESULT([$LIBXO_TEXT_ONLY]) | ||
AM_CONDITIONAL([LIBXO_TEXT_ONLY], [test "$LIBXO_TEXT_ONLY" != "no"]) | ||
|
||
AC_CHECK_LIB([m], [lrint]) | ||
AM_CONDITIONAL([HAVE_LIBM], [test "$HAVE_LIBM" != "no"]) | ||
|
||
|
@@ -233,6 +241,7 @@ AC_CONFIG_FILES([ | |
libxo/xoversion.h | ||
xo/Makefile | ||
xolint/Makefile | ||
xohtml/Makefile | ||
packaging/libxo.pc | ||
doc/Makefile | ||
tests/Makefile | ||
|
@@ -253,6 +262,7 @@ AC_MSG_NOTICE([summary of build options: | |
bindir: ${XO_BINDIR} | ||
includedir: ${XO_INCLUDEDIR} | ||
share dir: ${XO_SHAREDIR} | ||
oxtradoc dir: ${SLAX_OXTRADOCDIR} | ||
compiler: ${CC} (${HAVE_GCC:-no}) | ||
compiler flags: ${CFLAGS} | ||
|
@@ -262,4 +272,5 @@ AC_MSG_NOTICE([summary of build options: | |
debug: ${LIBXO_DEBUG:-no} | ||
printf-like: ${HAVE_PRINTFLIKE:-no} | ||
libxo-options: ${LIBXO_OPTS:-no} | ||
text-only: ${LIBXO_TEXT_ONLY:-no} | ||
]) |
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
Oops, something went wrong.