summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* build-sys: add Automake option dist-bzip2Stepan Kasal2007-05-161-1/+1
| | | | | | We distribute .tar.bz2 along with .tar.gz . Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: in configure.ac, change "po" -> "$srcdir/po"Stepan Kasal2007-05-161-2/+2
| | | | Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: let configure instantiate the misc-utils/*.pl scriptsStepan Kasal2007-05-161-0/+2
| | | | | | The substitution of @PERL@ is most done with AC_CONFIG_FILES. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: --prefix defaults to /usrStepan Kasal2007-05-161-1/+15
| | | | | | | Use prefix=/usr as the default setting. If prefix is /usr, make bindir and sbindir default to /bin and /sbin, respectively. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: remove swapargs.h, move the tests to main configure.acStepan Kasal2007-05-161-0/+23
| | | | | | | Do not use header swapargs.h, generated by script swap.configure; use the standard AC_DEFINE method in configure.ac. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: replace AC_TRY_* by AC_*_IFELSEStepan Kasal2007-05-161-21/+26
| | | | | | | The AC_TRY_* macros are deprecated. Following the suggestion from autoupdate, I have replaced them by AC_*_IFELSE. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: s/AC_HELP_STRING/AS_HELP_STRING/Stepan Kasal2007-05-161-26/+26
| | | | | | The macro has been renamed. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: do not use internal Autoconf variablesStepan Kasal2007-05-161-60/+61
| | | | | | | This is a cleanup of configure.ac removing the internal ac_cv_* variables. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: merge adjacent AC_CONFIG_HEADERS and AC_CONFIG_FUNCS callsStepan Kasal2007-05-161-23/+20Star
| | | | | | | Merge adjacent calls to AC_CONFIG_HEADERS--the generated configure is then smaller. Likewise for AC_CONFIG_FUNCS. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: do not set with_foo twiceStepan Kasal2007-05-161-26/+26
| | | | | | | | | It's redundant to set with_slang=$withval, and similar. (Inspect the generated configure; it contains withval=$with_slang; with_slang=$withval :-) Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: do not build convenience libraries in lib/Stepan Kasal2007-05-161-1/+0Star
| | | | | | | Build lib/*.c individually for each project which uses it, so that the right set of flags is applied each time. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: remove AC_PROG_RANLIBStepan Kasal2007-05-161-1/+0Star
| | | | | | libtoolize (1.5.16) says it's now obsolete. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: declare SUID_CFLAGS and SUID_LDFLAGS as preciousStepan Kasal2007-05-161-2/+4
| | | | | | | Use AC_ARG_VAR to declare the variables SUID_CFLAGS and SUID_LDFLAGS as precious. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: add SUID_LDFLAGSStepan Kasal2007-05-161-0/+1
| | | | | | | Programs which are usually installed with the setuid bit do need their own CFLAGS and LDFLAGS. SUID_LDFLAGS is analogic to SUID_CFLAGS. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: move the optimization flags to AM_CFLAGSStepan Kasal2007-05-161-2/+0Star
| | | | | | | | | The optimization flags are not preprocessor flags. Moreover, CPPFLAGS and CFLAGS shall be overridable at make time, the configure script shall not touch them. Setting AM_CFLAGS in config/include-Makefile.am seems to be TRW. Signed-off-by: Stepan Kasal <skasal@redhat.com>
* build-sys: add SUID_CFLAGSKarel Zak2007-04-251-0/+3
| | | | | | | | The patch allows to define special CFLAGS for typical suid programs (like mount, umount, chfn, ...). Some distributions use for example "-fpic" for suid binaries. Signed-off-by: Karel Zak <kzak@redhat.com>
* tests: add library for LD_PRELOAD to manipulate with time() in testsKarel Zak2007-03-141-0/+1
| | | | | | | | 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>
* build-sys: add support for auditKarel Zak2007-03-121-0/+13
| | | | | | You can compile --with-audit now. Signed-off-by: Karel Zak <kzak@redhat.com>
* build-sys: configure.am selinux support cleanupKarel Zak2007-02-081-4/+4
| | | | | | | | | Changes: - don't include SELinux as default (--with-selinux is required) - the SELinux is not useful for login-utils only - clean up PAM and login-utils tests in the configure.am Signed-off-by: Karel Zak <kzak@redhat.com>
* Clean up pagesize/PAGE_SIZE usage.Karel Zak2007-02-061-1/+0Star
| | | | | | | | | Now all code in util-linux uses sysconf(_SC_PAGESIZE) that is standardized and preferred way of querying page size. The asm/page.h file is not included to the code anymore. (This patch doesn't change mount's FS detection code which will be removed later). Signed-off-by: Karel Zak <kzak@redhat.com>
* tests: add simple helper that returns info about systemKarel Zak2007-01-041-0/+1
| | | | | | usage: tests/helpers/mnt_test_sysinfo <infoname> Signed-off-by: Karel Zak <kzak@redhat.com>
* tests: add basic infrastructure for regression testsKarel Zak2007-01-041-0/+2
| | | | | | | | | The patch adds tests/ directory with simple regression tests infrastructure. Also, it adds the "ts-mount-paths" test that testing if all defined paths (fstab, mtab, locks) are still same. Signed-off-by: Karel Zak <kzak@redhat.com>
* build-sys: rename to -ng, change maintainer nameKarel Zak2007-01-041-1/+1
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* build-sys: add missing filesKarel Zak2007-01-041-1/+2
| | | | | | | This patch add all missing headers, man pages and README files to automake stuff and "make dist-gzip" produces useful tarball now. Signed-off-by: Karel Zak <kzak@redhat.com>
* build-sys: remove generated autotools stuff from gitKarel Zak2007-01-031-2/+23
| | | | | | | 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>
* Imported from util-linux-2.13-pre7 tarball.Karel Zak2006-12-071-1/+1
|
* Imported from util-linux-2.13-pre6 tarball.Karel Zak2006-12-071-1/+1
|
* Imported from util-linux-2.13-pre5 tarball.Karel Zak2006-12-071-5/+4Star
|
* Imported from util-linux-2.13-pre4 tarball.Karel Zak2006-12-071-2/+4
|
* Imported from util-linux-2.13-pre3 tarball.Karel Zak2006-12-071-16/+47
|
* Imported from util-linux-2.13-pre2 tarball.Karel Zak2006-12-071-49/+49
|
* Imported from util-linux-2.13-pre1 tarball.Karel Zak2006-12-071-0/+359