Changeset d4e90c1 in OpenSC
- Timestamp:
- 06/15/11 07:58:37 (11 months ago)
- Branches:
- master, staging
- Children:
- d505a55
- Parents:
- a6b7743
- git-author:
- Martin Paljak <martin@…> (06/07/11 09:28:25)
- git-committer:
- Martin Paljak <martin@…> (06/15/11 07:58:37)
- Files:
-
- 1 added
- 1 deleted
- 3 edited
-
.gitignore (added)
-
Makefile.am (modified) (1 diff)
-
configure.ac (modified) (3 diffs)
-
doc/Makefile.am (modified) (1 diff)
-
doc/svn2cl.xsl (deleted)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
ra7934b3 rd4e90c1 24 24 Generate-ChangeLog: 25 25 rm -f ChangeLog.tmp "$(srcdir)/ChangeLog" 26 test -n "$(SVN)" -a -n "$(XSLTPROC)" 27 if test -d "$(top_srcdir)/.svn"; then \ 28 $(SVN) --verbose --xml log "$(top_srcdir)" | \ 29 $(XSLTPROC) --nonet --stringparam linelen 75 \ 30 --stringparam groupbyday no \ 31 --stringparam include-rev no \ 32 "$(top_srcdir)/doc/svn2cl.xsl" - > ChangeLog.tmp; \ 26 test -n "$(GIT)" 27 if test -d "$(top_srcdir)/.git"; then \ 28 echo "# Generated by Makefile. Do not edit!" > ChangeLog.tmp; \ 29 $(GIT) log >> ChangeLog.tmp; \ 33 30 else \ 34 echo "Warning: Unable to generate ChangeLog from none svn checkout" >&2; \31 echo "Warning: Unable to generate ChangeLog. Need a Git repostiroy." >&2; \ 35 32 echo > ChangeLog.tmp; \ 36 33 fi -
configure.ac
r0dcab4a rd4e90c1 6 6 define([PACKAGE_VERSION_MINOR], [12]) 7 7 define([PACKAGE_VERSION_FIX], [2]) 8 define([PACKAGE_SUFFIX], [- svn])8 define([PACKAGE_SUFFIX], [-pre1]) 9 9 10 10 AC_INIT([opensc],[PACKAGE_VERSION_MAJOR.PACKAGE_VERSION_MINOR.PACKAGE_VERSION_FIX[]PACKAGE_SUFFIX]) … … 193 193 ) 194 194 195 dnl These required for svn checkout 196 AC_ARG_VAR([SVN], [subversion utility]) 195 dnl These required for repository checkout 197 196 AC_ARG_VAR([XSLTPROC], [xsltproc utility]) 198 AC_ CHECK_PROGS([SVN],[svn])197 AC_ARG_VAR([git], [git]) 199 198 AC_CHECK_PROGS([XSLTPROC],[xsltproc]) 199 AC_CHECK_PROGS([GIT],[git]) 200 200 201 201 AC_MSG_CHECKING([xsl-stylesheets]) … … 491 491 if test "${enable_man}" = "yes" -o "${enable_doc}" = "yes"; then 492 492 AC_MSG_CHECKING([XSLTPROC requirement]) 493 test -n "${XSLTPROC}" || AC_MSG_ERROR([Missing XSLTPROC svn build with man or doc])493 test -n "${XSLTPROC}" || AC_MSG_ERROR([Missing XSLTPROC]) 494 494 test "${xslstylesheetsdir}" != "no" || AC_MSG_ERROR([Missing xslstylesheetsdir]) 495 495 AC_MSG_RESULT([ok]) -
doc/Makefile.am
r08c111a rd4e90c1 1 1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 dist_noinst_SCRIPTS = svn2cl.xslhtml.xsl man.xsl3 dist_noinst_SCRIPTS = html.xsl man.xsl 4 4 dist_noinst_DATA = $(srcdir)/tools/*.xml api.css 5 5 if ENABLE_DOC
Note: See TracChangeset
for help on using the changeset viewer.
