Changeset d4e90c1 in OpenSC


Ignore:
Timestamp:
06/15/11 07:58:37 (11 months ago)
Author:
martin
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)
Message:

Changes to build scripts requires for Git transition

Files:
1 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    ra7934b3 rd4e90c1  
    2424Generate-ChangeLog: 
    2525        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; \ 
    3330        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; \ 
    3532                echo > ChangeLog.tmp; \ 
    3633        fi 
  • configure.ac

    r0dcab4a rd4e90c1  
    66define([PACKAGE_VERSION_MINOR], [12]) 
    77define([PACKAGE_VERSION_FIX], [2]) 
    8 define([PACKAGE_SUFFIX], [-svn]) 
     8define([PACKAGE_SUFFIX], [-pre1]) 
    99 
    1010AC_INIT([opensc],[PACKAGE_VERSION_MAJOR.PACKAGE_VERSION_MINOR.PACKAGE_VERSION_FIX[]PACKAGE_SUFFIX]) 
     
    193193) 
    194194 
    195 dnl These required for svn checkout 
    196 AC_ARG_VAR([SVN], [subversion utility]) 
     195dnl These required for repository checkout 
    197196AC_ARG_VAR([XSLTPROC], [xsltproc utility]) 
    198 AC_CHECK_PROGS([SVN],[svn]) 
     197AC_ARG_VAR([git], [git]) 
    199198AC_CHECK_PROGS([XSLTPROC],[xsltproc]) 
     199AC_CHECK_PROGS([GIT],[git]) 
    200200 
    201201AC_MSG_CHECKING([xsl-stylesheets]) 
     
    491491if test "${enable_man}" = "yes" -o "${enable_doc}" = "yes"; then 
    492492        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]) 
    494494        test "${xslstylesheetsdir}" != "no" || AC_MSG_ERROR([Missing xslstylesheetsdir]) 
    495495        AC_MSG_RESULT([ok]) 
  • doc/Makefile.am

    r08c111a rd4e90c1  
    11MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 
    22 
    3 dist_noinst_SCRIPTS = svn2cl.xsl html.xsl man.xsl 
     3dist_noinst_SCRIPTS = html.xsl man.xsl 
    44dist_noinst_DATA = $(srcdir)/tools/*.xml api.css 
    55if ENABLE_DOC 
Note: See TracChangeset for help on using the changeset viewer.