Update of /cvsroot/openvrml/openvrml/lib/gtkglext
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5605
Modified Files:
Tag: OpenVRML-GtkPlug-BRANCH
configure.in
Log Message:
Use gtk-doc.make (from gtkdocize); copy version.xml to the srcdir so that non-srcdir builds work.
Index: configure.in
===================================================================
RCS file: /cvsroot/openvrml/openvrml/lib/gtkglext/configure.in,v
retrieving revision 1.1.1.1.2.2
retrieving revision 1.1.1.1.2.3
diff -C2 -d -r1.1.1.1.2.2 -r1.1.1.1.2.3
*** configure.in 29 Sep 2006 23:42:25 -0000 1.1.1.1.2.2
--- configure.in 30 Sep 2006 03:11:30 -0000 1.1.1.1.2.3
***************
*** 801,857 ****
##################################################
! AC_ARG_WITH([html-dir],
! [AC_HELP_STRING([--with-html-dir=PATH],
! [path to installed docs])])
!
! 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])
!
! dnl Make people enable the gtk-doc stuff explicitely.
! AC_ARG_ENABLE([gtk-doc],
! [AC_HELP_STRING([--enable-gtk-doc],
! [use gtk-doc to build documentation [default=no]])], ,
! [enable_gtk_doc=no])
!
! if test "x$enable_gtk_doc" = "xyes" ; then
!
! gtk_doc_min_version=0.10
!
! AC_CHECK_PROG([GTKDOC], [gtkdoc-mkdb], [true], [false])
!
! if $GTKDOC ; then
! gtk_doc_version=`gtkdoc-mkdb --version`
! AC_MSG_CHECKING([gtk-doc version ($gtk_doc_version) >= $gtk_doc_min_version])
!
! IFS="${IFS= }"; gtk_save_IFS="$IFS"; IFS="."
! set $gtk_doc_version
! for min in $gtk_doc_min_version ; do
! cur=$1; shift
! if test -z $min ; then break; fi
! if test -z $cur ; then GTKDOC=false; break; fi
! if test $cur -gt $min ; then break ; fi
! if test $cur -lt $min ; then GTKDOC=false; break ; fi
! done
! IFS="$gtk_save_IFS"
!
! if $GTKDOC ; then
! AC_MSG_RESULT([yes])
! else
! AC_MSG_RESULT([no])
! fi
! fi
!
! if test x$GTKDOC != xtrue ; then
! enable_gtk_doc=no
! fi
!
! fi
!
! AM_CONDITIONAL([ENABLE_GTK_DOC], [test "x$enable_gtk_doc" = "xyes"])
--- 801,805 ----
##################################################
! GTK_DOC_CHECK
|