Forwarded changes from 0.2.2 to 0.2.3
This commit is contained in:
parent
7ad4f989d4
commit
d47767021f
21
Makefile.am
21
Makefile.am
@ -90,11 +90,8 @@ libinclude_HEADERS = \
|
|||||||
## Build test applications
|
## Build test applications
|
||||||
noinst_PROGRAMS = \
|
noinst_PROGRAMS = \
|
||||||
test/libburner \
|
test/libburner \
|
||||||
test/burn \
|
|
||||||
test/iso \
|
test/iso \
|
||||||
test/master \
|
|
||||||
test/poll \
|
test/poll \
|
||||||
test/rip \
|
|
||||||
test/toc \
|
test/toc \
|
||||||
test/structest
|
test/structest
|
||||||
|
|
||||||
@ -110,15 +107,6 @@ test_poll_SOURCES = test/poll.c
|
|||||||
test_toc_CPPFLAGS = -Ilibburn
|
test_toc_CPPFLAGS = -Ilibburn
|
||||||
test_toc_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS)
|
test_toc_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS)
|
||||||
test_toc_SOURCES = test/toc.c
|
test_toc_SOURCES = test/toc.c
|
||||||
test_rip_CPPFLAGS = -Ilibburn
|
|
||||||
test_rip_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS)
|
|
||||||
test_rip_SOURCES = test/rip.c
|
|
||||||
test_burn_CPPFLAGS = -Ilibburn
|
|
||||||
test_burn_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS)
|
|
||||||
test_burn_SOURCES = test/burn.c
|
|
||||||
test_master_CPPFLAGS = -Ilibburn
|
|
||||||
test_master_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS)
|
|
||||||
test_master_SOURCES = test/master.c
|
|
||||||
test_structest_CPPFLAGS = -Ilibburn
|
test_structest_CPPFLAGS = -Ilibburn
|
||||||
test_structest_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS)
|
test_structest_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS)
|
||||||
test_structest_SOURCES = test/structest.c
|
test_structest_SOURCES = test/structest.c
|
||||||
@ -173,15 +161,11 @@ indent_files = \
|
|||||||
$(libisofs_libisofs_la_SOURCES) \
|
$(libisofs_libisofs_la_SOURCES) \
|
||||||
$(libburn_libburn_la_SOURCES) \
|
$(libburn_libburn_la_SOURCES) \
|
||||||
$(test_libburner_SOURCES) \
|
$(test_libburner_SOURCES) \
|
||||||
$(test_devices_SOURCES) \
|
|
||||||
$(test_poll_SOURCES) \
|
$(test_poll_SOURCES) \
|
||||||
$(test_toc_SOURCES) \
|
$(test_toc_SOURCES) \
|
||||||
$(test_rip_SOURCES) \
|
|
||||||
$(test_burn_SOURCES) \
|
|
||||||
$(test_burniso_SOURCES) \
|
|
||||||
$(test_master_SOURCES) \
|
|
||||||
$(test_structest_SOURCES) \
|
$(test_structest_SOURCES) \
|
||||||
$(test_blank_SOURCES)
|
$(test_iso_SOURCES)
|
||||||
|
|
||||||
|
|
||||||
indent: $(indent_files)
|
indent: $(indent_files)
|
||||||
indent -bad -bap -nbbb -nbbo -nbc -bli0 -br -bls \
|
indent -bad -bap -nbbb -nbbo -nbc -bli0 -br -bls \
|
||||||
@ -207,6 +191,7 @@ EXTRA_DIST = \
|
|||||||
doc/doxygen.conf.in \
|
doc/doxygen.conf.in \
|
||||||
README \
|
README \
|
||||||
AUTHORS \
|
AUTHORS \
|
||||||
|
CONTRIBUTORS \
|
||||||
COPYRIGHT \
|
COPYRIGHT \
|
||||||
cdrskin/README \
|
cdrskin/README \
|
||||||
cdrskin/cdrecord_spy.sh \
|
cdrskin/cdrecord_spy.sh \
|
||||||
|
26
configure.ac
26
configure.ac
@ -61,15 +61,6 @@ if test ! $ac_cv_func_fseeko; then
|
|||||||
AC_ERROR([Libburn requires largefile support.])
|
AC_ERROR([Libburn requires largefile support.])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_ARG_ENABLE(static, enable_static=yes)
|
|
||||||
if test x$enable_static != xyes; then
|
|
||||||
AC_MSG_RESULT([no])
|
|
||||||
AM_DISABLE_STATIC=no
|
|
||||||
else
|
|
||||||
AC_MSG_RESULT([yes])
|
|
||||||
AM_DISABLE_STATIC=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_PROG_LIBTOOL
|
AC_PROG_LIBTOOL
|
||||||
AC_SUBST(LIBTOOL_DEPS)
|
AC_SUBST(LIBTOOL_DEPS)
|
||||||
LIBTOOL="$LIBTOOL --silent"
|
LIBTOOL="$LIBTOOL --silent"
|
||||||
@ -102,23 +93,6 @@ else
|
|||||||
CFLAGS="$CFLAGS -DDEBUG"
|
CFLAGS="$CFLAGS -DDEBUG"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_MSG_CHECKING([if we build the HTML documentation])
|
|
||||||
AC_ARG_ENABLE(docs,
|
|
||||||
[ --enable-docs Use doxygen to build HTML documentation],
|
|
||||||
[case "${enableval}" in
|
|
||||||
yes) build_docs=true ;;
|
|
||||||
no) build_docs=false ;;
|
|
||||||
*) AC_MSG_ERROR(bad value ${enableval} for --enable-docs) ;;
|
|
||||||
esac],[build_docs=false])
|
|
||||||
|
|
||||||
if test "x$build_docs" = "xtrue"; then
|
|
||||||
AC_MSG_RESULT([yes])
|
|
||||||
touch doc/doc.lock
|
|
||||||
else
|
|
||||||
AC_MSG_RESULT([no (use --enable-docs to enable)])
|
|
||||||
rm -f doc/doc.lock
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([
|
AC_CONFIG_FILES([
|
||||||
Makefile
|
Makefile
|
||||||
doc/doxygen.conf
|
doc/doxygen.conf
|
||||||
|
Loading…
Reference in New Issue
Block a user