Changeset 3464
- Timestamp:
- 03/04/08 23:59:06
- Files:
-
- trunk/libtinymail-camel/camel-lite/camel/Makefile.am (modified) (1 diff)
- trunk/m4/gtk-doc.m4 (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail-camel/camel-lite/camel/Makefile.am
r3458 r3464 26 26 camel_litelibexecdir = $(libexecdir) 27 27 28 noinst_LTLIBRARIES = libcamel-lite-1.2.la29 #lib_LTLIBRARIES = libcamel-lite-1.2.la28 # noinst_LTLIBRARIES = libcamel-lite-1.2.la 29 lib_LTLIBRARIES = libcamel-lite-1.2.la 30 30 31 31 INCLUDES = -I.. -I$(srcdir)/.. \ trunk/m4/gtk-doc.m4
r2911 r3464 10 10 AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first 11 11 dnl for overriding the documentation installation directory 12 AC_ARG_WITH( [html-dir],13 A S_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,12 AC_ARG_WITH(html-dir, 13 AC_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, 14 14 [with_html_dir='${datadir}/gtk-doc/html']) 15 15 HTML_DIR="$with_html_dir" 16 AC_SUBST( [HTML_DIR])16 AC_SUBST(HTML_DIR) 17 17 18 18 dnl enable/disable documentation building 19 AC_ARG_ENABLE( [gtk-doc],20 A S_HELP_STRING([--enable-gtk-doc],21 [use gtk-doc to build documentation [ [default=no]]]),,22 [enable_gtk_doc=no])19 AC_ARG_ENABLE(gtk-doc, 20 AC_HELP_STRING([--enable-gtk-doc], 21 [use gtk-doc to build documentation [default=no]]),, 22 enable_gtk_doc=no) 23 23 24 24 have_gtk_doc=no 25 25 if test x$enable_gtk_doc = xyes; then 26 26 if test -z "$PKG_CONFIG"; then 27 AC_PATH_PROG( [PKG_CONFIG], [pkg-config], [no])27 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 28 28 fi 29 29 if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then … … 37 37 AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version]) 38 38 if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then 39 AC_MSG_RESULT( [yes])39 AC_MSG_RESULT(yes) 40 40 else 41 AC_MSG_RESULT( [no])41 AC_MSG_RESULT(no) 42 42 have_gtk_doc=no 43 43 fi … … 49 49 fi 50 50 51 AM_CONDITIONAL( [ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes])52 AM_CONDITIONAL( [GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"])51 AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes) 52 AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL") 53 53 ])
