Changeset 907
- Timestamp:
- Nov 29, 2009, 4:33:19 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.svndigest/config
r890 r907 50 50 *.am = "#":"\n" 51 51 *.m4 = "#":"\n" ; "dnl":"\n" 52 *.as = "#":"\n" ; "dnl":"\n" 52 53 *.c = "//":"\n" ; "/*":"*/" 53 54 *.cc = "//":"\n" ; "/*":"*/" -
trunk/README.developer
r874 r907 24 24 25 25 To build from a subversion checkout, you will need Autotools. More 26 specifically Automake 1.10 (or later) and Autoconf 2.6 1(or later). To26 specifically Automake 1.10 (or later) and Autoconf 2.63 (or later). To 27 27 build man page you will need help2man. 28 28 -
trunk/bin/Makefile.am
r898 r907 28 28 noinst_HEADERS = Parameter.h 29 29 30 bin_SCRIPTS = svndigest-copy-cache 31 EXTRA_DIST = svndigest-copy-cache.as 32 30 33 LDADD = $(top_builddir)/lib/libsvndigest.a \ 31 34 $(top_builddir)/lib/yat/libyat.a $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS) … … 36 39 AM_CXXFLAGS = $(DEFAULT_CXXFLAGS) 37 40 41 .as.in: 42 $(AUTOM4TE) -l M4sh -o $@ -m 0444 $< 43 44 MAINTAINERCLEANFILES = svndigest-copy-cache.in 45 38 46 clean-local: 39 47 rm -rf *~ -
trunk/configure.ac
r905 r907 29 29 # along with svndigest. If not, see <http://www.gnu.org/licenses/>. 30 30 31 AC_PREREQ( 2.61)31 AC_PREREQ([2.63]) 32 32 33 33 m4_include([m4/version.m4]) … … 43 43 m4_ifndef([AC_PACKAGE_URL], 44 44 [AC_DEFINE([PACKAGE_URL], ["http://dev.thep.lu.se/svndigest"], 45 [Define to home page for this package])]) 45 [Define to home page for this package]) 46 AC_SUBST([PACKAGE_URL], ["http://dev.thep.lu.se/svndigest"])]) 46 47 47 48 AC_SUBST([SVNDIGEST_MAJOR_VERSION], [MAJOR_VERSION]) … … 60 61 AC_CONFIG_HEADER([config.h]) 61 62 AM_INIT_AUTOMAKE([1.10 std-options]) 63 64 dnl create bin/svndigest-copy-cache.in at autoconf time and let 65 dnl config.status create bin/svndigest-copy-cache from 66 dnl bin/svndigest-copy-cache.in 67 m4_pushdef([FILE], [svndigest-copy-cache]) 68 m4_pushdef([my_m4sh_options], [-m 0444]) 69 dnl me cd down in bin to have same output as when created from Makefile 70 m4_syscmd([cd bin && autom4te -l M4sh -o ]FILE[.in ]my_m4sh_options FILE[.as]) 71 AC_CONFIG_FILES([bin/]FILE[], [chmod +x bin/]FILE[ && chmod a-w bin/]FILE[]) 72 dnl export options so we can use the same in Makefile 73 AC_SUBST([M4SH_OPTIONS], ['my_m4sh_options']) 74 m4_popdef([my_m4sh_options]) 75 m4_popdef([FILE]) 76 AM_MISSING_PROG([AUTOM4TE], [autom4te]) 62 77 63 78 # Set default programming language
Note: See TracChangeset
for help on using the changeset viewer.