mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-06 02:51:00 +01:00
22 lines
389 B
Plaintext
22 lines
389 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
AC_INIT(glib-sections.txt)
|
|
|
|
AM_INIT_AUTOMAKE(glib-reference, 1.1.3)
|
|
|
|
AC_ARG_WITH(html-dir, [ --with-html-dir=PATH path to installed docs ])
|
|
|
|
AC_ISC_POSIX
|
|
AC_PROG_CC
|
|
|
|
if test "x$with_html_dir" = "x" ; then
|
|
HTML_DIR='${datadir}/gtk-doc/html'
|
|
else
|
|
HTML_DIR=$with_html_dir
|
|
fi
|
|
|
|
AC_SUBST(HTML_DIR)
|
|
|
|
AC_OUTPUT([Makefile])
|
|
|