summaryrefslogtreecommitdiff
path: root/autogen.sh
AgeCommit message (Collapse)AuthorFilesLines
2011-01-31build-sys: shell syntax fix in autogen.shSami Kerola1-1/+1
Use of == as synonym of single = sign backfires on systems where /bin/sh is dash, like with Ubuntu. Signed-off-by: Sami Kerola <kerolasa@iki.fi>
2011-01-05build-sys: use generated libtool-2 stuffKarel Zak1-13/+13
The commit 60a4edd66200be829560dce0d41a02fc70cef4f5 temporary disabled libtool-2 in autogen.sh. It seems that libtool-2 in available in many distributions now, so we don't have to manage the generated .m4 libtool files in git anymore. Signed-off-by: Karel Zak <kzak@redhat.com>
2011-01-05build-sys: cleanup autogen.shKarel Zak1-30/+24
Reported-by: Jon Grant <jg@jguk.org> Signed-off-by: Karel Zak <kzak@redhat.com>
2010-12-29build-sys: remove generated po/POTFILES.inKarel Zak1-0/+1
Signed-off-by: Karel Zak <kzak@redhat.com>
2010-11-30rename util-linux-ng back to util-linuxKarel Zak1-6/+6
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-07build-sys: remove gtkdocize from autogen.shKarel Zak1-8/+0
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-10-12build-sys: clean up gtk-doc usageKarel Zak1-12/+7
Currently gtk-doc is optional. Unfortunately, the ./configure script still depends on GTK_DOC_CHECK macro and shlibs/blkid/docs/Makefile.am depends on gtk-doc.make. It seems that the best solution is to add gtk-doc.[make,m4] files to the repository. Signed-off-by: Karel Zak <kzak@redhat.com>
2009-09-16libblkid: gtkdocize (API docs generated by gtk-docs)Karel Zak1-1/+16
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-02-16build-sys: add temporary libtool *.m4 stuffKarel Zak1-14/+14
We require libtool-2 (because old 1.5.x is crap). Unfortunately, libtool-2 is still not available in many Linux distributions -- now I see it in unstable distributions only. The painless way how to resolve this problem is to __temporary__ commit generated libtool-2 stuff to our repository. Signed-off-by: Karel Zak <kzak@redhat.com>
2009-02-13build-sys: libtoolize by libtool-2Karel Zak1-2/+19
We need an infrastructure for stared libraries. The latest libtool-2 seems useful and it's definitely better than the old 1.5 crap. You need to install libtool-2 when you want to run ./autogen.sh script after checkout from git repository. Signed-off-by: Karel Zak <kzak@redhat.com>
2007-09-02build-sys: autogen.sh reports versions of autotools nowKarel Zak1-2/+11
Signed-off-by: Karel Zak <kzak@redhat.com>
2007-07-25build-sys: add ${AC,AP,AM,AH}_OPTS to autogen.shKarel Zak1-5/+5
With this patch, you can define autotool options when you need to generate build-system. For example: $ AM_OPTS="--copy" ./autogen.sh Signed-off-by: Karel Zak <kzak@redhat.com>
2007-07-11build-sys: remove libtoolKarel Zak1-8/+0
Signed-off-by: Karel Zak <kzak@redhat.com>
2007-05-08build-sys: fix the final message of autogen.shStepan Kasal1-1/+1
The message shall not recommend calling ./configure when srcdir != "." . Signed-off-by: Stepan Kasal <skasal@redhat.com>
2007-05-08build-sys: call automake after autoconfStepan Kasal1-1/+1
"automake" calls "autoconf" internally, to trace the expansion of configure.ac. So it is more natural to call "autoconf" before "automake". Signed-off-by: Stepan Kasal <skasal@redhat.com>
2007-04-11check exit status of autotoolsMike Frysinger1-0/+1
Make sure each autotool run in autogen.sh worked and if not, abort. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2007-03-14tests: add library for LD_PRELOAD to manipulate with time() in testsKarel Zak1-1/+8
The cal command generates output that depends on time(). For reliable regression tests we need to use still same time. It seems that LD_PRELOAD is pretty simple way. Signed-off-by: Karel Zak <kzak@redhat.com>
2007-01-03build-sys: remove generated autotools stuff from gitKarel Zak1-0/+69
The generated autotools stuff shouldn't be maintained by SCM. After check out from git use ./autogen.sh. For more details see README.devel. Signed-off-by: Karel Zak <kzak@redhat.com>