Changeset 2482
- Timestamp:
- 01/30/07 00:37:07 (2 years ago)
- Files:
-
- trunk/Makefile.am (modified) (1 diff)
- trunk/configure.ac (modified) (1 diff)
- trunk/gentoo (added)
- trunk/gentoo/Makefile-files (added)
- trunk/gentoo/util-vserver (added)
- trunk/gentoo/vprocunhide (added)
- trunk/gentoo/vservers.default (added)
- trunk/util-vserver.spec.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Makefile.am
r2367 r2482 227 227 include $(top_srcdir)/lib_internal/Makefile-files 228 228 include $(top_srcdir)/vserver-start/Makefile-files 229 include $(top_srcdir)/gentoo/Makefile-files 229 230 230 231 include $(top_srcdir)/m4/gpgsig.am trunk/configure.ac
r2453 r2482 337 337 338 338 339 dnl Check what distro this is, use Gentoo initscripts if appropriate 340 AC_MSG_CHECKING([for host initscripts]) 341 AC_ARG_WITH(initscripts, [force host initscripts (valid values are: gentoo, sysv)], [ 342 case "$withval" in 343 gentoo) ensc_with_init=gentoo;; 344 sysv) ensc_with_init=sysv;; 345 *) AC_MSG_ERROR([invalid initscripts value, only gentoo and sysv are supported]);; 346 esac 347 ], [ 348 if test -e /etc/gentoo-release; then 349 ensc_with_init=gentoo 350 else 351 ensc_with_init=sysv 352 fi 353 ]) 354 AC_MSG_RESULT([$ensc_with_init]) 355 AM_CONDITIONAL(HAVE_GENTOO_INIT, test x"$ensc_with_init" = xgentoo) 356 AM_CONDITIONAL(HAVE_SYSV_INIT, test x"$ensc_with_init" = xsysv) 357 358 339 359 dnl BIG HACK! Do some autodetection here! 340 360 AC_DEFINE(UTMP_GID, [22], [The utmp gid-number]) trunk/util-vserver.spec.in
r2451 r2482 173 173 %configure --with-initrddir=%_initrddir --enable-release \ 174 174 %{?_without_dietlibc:--disable-dietlibc} \ 175 %{?_with_legacy:--enable-apis=NOLEGACY} 175 %{?_with_legacy:--enable-apis=NOLEGACY} \ 176 --with-initscripts=sysv 176 177 177 178 %__make %{?_smp_mflags} all
