From e2ae41e27d178738a3ff0d03222bcdfc38b1895c Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Tue, 20 May 2008 13:40:41 +0200 Subject: removed .hg* files and renamed hgcompile to gitcompile --- .gitignore | 26 ++++++++++++++++++++++++++ .hgignore | 28 ---------------------------- .hgtags | 26 -------------------------- gitcompile | 17 +++++++++++++++++ hgcompile | 17 ----------------- 5 files changed, 43 insertions(+), 71 deletions(-) create mode 100644 .gitignore delete mode 100644 .hgignore delete mode 100644 .hgtags create mode 100755 gitcompile delete mode 100755 hgcompile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..acc2b03 --- /dev/null +++ b/.gitignore @@ -0,0 +1,26 @@ +configure +config.log +config.cache +config.status +config.guess +config.sub +confdefs.h +config.h.in +Makefile +Makefile.in +libtool +depcomp +ltmain.sh +ltconfig +version +aclocal.m4 +mkinstalldirs +install-sh +missing +autom4te.cache +depcomp +compile +.libs +.deps +*.la +*.lo diff --git a/.hgignore b/.hgignore deleted file mode 100644 index 724bf98..0000000 --- a/.hgignore +++ /dev/null @@ -1,28 +0,0 @@ -syntax: glob - -configure -config.log -config.cache -config.status -config.guess -config.sub -confdefs.h -config.h.in -Makefile -Makefile.in -libtool -depcomp -ltmain.sh -ltconfig -version -aclocal.m4 -mkinstalldirs -install-sh -missing -autom4te.cache -depcomp -compile -.libs -.deps -*.la -*.lo diff --git a/.hgtags b/.hgtags deleted file mode 100644 index 734ac71..0000000 --- a/.hgtags +++ /dev/null @@ -1,26 +0,0 @@ -4b0add14f4c22da035d9aad09c0d5005a906ae21 v1.0.11rc4 -5a3450fd21dc61f306969e8d3fa2677551b34911 v1.0.10 -7f38f5e81ed2cdabbef5331a0195c9d7112142d7 v1.0.10rc1 -72249525a7cfad128e7142646654a2c8eba74b9d v1.0.9 -c3db0efb23b871d32388c8bb39baec4095c63663 v1.0.9rc4 -58f177a47b57a837b2cecfc034e13020b50facb4 v1.0.9rc3 -42ae7a1453d9d340b95f0cad4c4688db339b7fcf v1.0.9rc2 -6cadac74b68eebc39fd953bf2a09a9150715d4fd v1.0.9rc1 -d37a68d6d0c091144c75628edbc4066c05e86c90 v1.0.11rc5 -029bdc90014449f9643469c49d44964f70175240 v1.0.11 -5e5da8ace771a77905612ffad0309063d6d64eb9 v1.0.12rc1 -2316cce004b93148525c69aefb7927223bf09ddc v1.0.12rc2 -f20ae39b72a32a1b9ede656d49014e7e1882928d v1.0.12 -cc718cf3b67386ffe411971394d5fe96bdd2245a v1.0.13rc2 -213585f2697b17be9ef139ff2aff3f75139bb5be v1.0.13 -8ef2d7f695168af4320c022c45f907c3f0d13238 v1.0.14rc1 -60e437c600432f71d33744f6312005313aad3226 v1.0.14rc1a -20a7340e62bdf0a05be950bcf32300a8aa0f96f5 v1.0.14rc2 -056fbbe547296ae1ba712e95f3c620d17a478eca v1.0.14rc3 -01a4a861a39c1e15a29025634caff20c2f04c43a v1.0.14rc4 -7147fb6d6612a4f72129a7b39e42650a1a2fa143 v1.0.14rc4 -213140a5ea7a02924814346b4409a5ae84aeb9c7 v1.0.14 -690ebe80ad8923936087a07f0f690d53ea289d26 v1.0.15rc1 -93d05f3418b28e56abb8e08216466cbe9858e453 v1.0.15 -8fee791a2fef5639e6b8807bcd9d5cefc5bccad4 v1.0.16rc1 -0fc727fc959da1f7798042ec3c1d6bc499939992 v1.0.16 diff --git a/gitcompile b/gitcompile new file mode 100755 index 0000000..f4d8a64 --- /dev/null +++ b/gitcompile @@ -0,0 +1,17 @@ +#!/bin/bash + +touch ltconfig +libtoolize --force --copy --automake +aclocal $ACLOCAL_FLAGS +autoheader +automake --foreign --copy --add-missing +touch depcomp # seems to be missing for old automake +autoconf +export CFLAGS='-O2 -Wall -W -pipe -g' +echo "CFLAGS=$CFLAGS" +echo "./configure $@" +./configure $@ || exit 1 +unset CFLAGS +if [ -z "$GITCOMPILE_NO_MAKE" ]; then + make +fi diff --git a/hgcompile b/hgcompile deleted file mode 100755 index 484a400..0000000 --- a/hgcompile +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -touch ltconfig -libtoolize --force --copy --automake -aclocal $ACLOCAL_FLAGS -autoheader -automake --foreign --copy --add-missing -touch depcomp # seems to be missing for old automake -autoconf -export CFLAGS='-O2 -Wall -W -pipe -g' -echo "CFLAGS=$CFLAGS" -echo "./configure $@" -./configure $@ || exit 1 -unset CFLAGS -if [ -z "$HGCOMPILE_NO_MAKE" ]; then - make -fi -- cgit