- Timestamp:
- Aug 11, 2009, 10:56:54 PM (13 years ago)
- Location:
- abuse/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/.gitignore
r160 r161 2 2 Makefile 3 3 aclocal.m4 4 autom4te.cache 4 5 config.h 5 6 config.h.in -
abuse/trunk/AUTHORS
r72 r161 1 Sam Hocevar <sam@ .zoy.org>1 Sam Hocevar <sam@hocevar.net> 2 2 - Debian package maintainer, current code maintainer. 3 3 -
abuse/trunk/bootstrap
r32 r161 1 1 #! /bin/sh 2 # $Id: bootstrap 1966 2008-02-17 08:29:51Z sam $2 # $Id: bootstrap 2005 2008-07-16 20:51:50Z sam $ 3 3 4 4 # bootstrap: generic bootstrap/autogen.sh script for autotools projects 5 5 # 6 # Copyright (c) 2002-200 8 Sam Hocevar <sam@zoy.org>6 # Copyright (c) 2002-2009 Sam Hocevar <sam@hocevar.net> 7 7 # 8 8 # This program is free software. It comes without any warranty, to … … 30 30 # Check for needed features 31 31 auxdir="`sed -ne 's/^[ \t]*A._CONFIG_AUX_DIR *([[ ]*\([^] )]*\).*/\1/p' $conffile`" 32 libtool="`grep -q '^[ \t]*A._PROG_LIBTOOL' $conffile && echo yes || echo no`" 33 header="`grep -q '^[ \t]*A._CONFIG_HEADER' $conffile && echo yes || echo no`" 34 aclocalflags="`sed -ne 's/^[ \t]*ACLOCAL_AMFLAGS[ \t]*=//p' Makefile.am`" 32 libtool="`grep '^[ \t]*A._PROG_LIBTOOL' $conffile >/dev/null 2>&1 && echo yes || echo no`" 33 header="`grep '^[ \t]*A._CONFIG_HEADER' $conffile >/dev/null 2>&1 && echo yes || echo no`" 34 makefile="`[ -f Makefile.am ] && echo yes || echo no`" 35 aclocalflags="`sed -ne 's/^[ \t]*ACLOCAL_AMFLAGS[ \t]*=//p' Makefile.am 2>/dev/null || :`" 35 36 36 37 # Check for automake … … 121 122 autoheader${acvers} 122 123 fi 123 #add --include-deps if you want to bootstrap with any other compiler than gcc 124 #automake${amvers} --add-missing --copy --include-deps 125 automake${amvers} --foreign --add-missing --copy 124 if test "$makefile" = "yes"; then 125 #add --include-deps if you want to bootstrap with any other compiler than gcc 126 #automake${amvers} --add-missing --copy --include-deps 127 automake${amvers} --foreign --add-missing --copy 128 fi 126 129 127 130 # Remove cruft that we no longer want
Note: See TracChangeset
for help on using the changeset viewer.