Changeset 4046
- Timestamp:
- 04/06/06 09:27:01 (2 years ago)
- Files:
-
- trackerd/trunk/configure (modified) (1 diff)
- trackerd/trunk/configure.in (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trackerd/trunk/configure
r4044 r4046 857 857 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] 858 858 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) 859 --with-user=USER install files as USER wired860 --with-group=GROUP install files as GROUP daemon859 --with-user=USER install files as USER [wired] 860 --with-group=GROUP install files as GROUP [daemon] 861 861 --with-fake-prefix=FPREFIX 862 install in FPREFIX but look like PREFIX PREFIX863 --with-trackerddir=DIR install tracker components in PREFIX/DIR wired862 install in FPREFIX but look like PREFIX [PREFIX] 863 --with-trackerddir=DIR install tracker components in PREFIX/DIR [wired] 864 864 865 865 Some influential environment variables: trackerd/trunk/configure.in
r4044 r4046 1 1 # Process this file with autoconf to produce a configure script 2 AC_INIT([trackerd], [1.0],[axel@zankasoftware.com])3 AC_PREREQ( 2.59)2 AC_INIT([trackerd], [1.0], [axel@zankasoftware.com]) 3 AC_PREREQ([2.57]) 4 4 AC_CONFIG_SRCDIR([config.h.in]) 5 5 AC_CONFIG_HEADER([config.h]) … … 45 45 # Check for some other user to use than "wired" 46 46 AC_MSG_CHECKING([for user]) 47 AC_ARG_WITH([user], A S_HELP_STRING(--with-user=USER,install files as USER [[wired]]))47 AC_ARG_WITH([user], AC_HELP_STRING([--with-user=USER], [install files as USER [[wired]]])) 48 48 49 49 if test -n "$with_user"; then … … 70 70 # Check for some other group to use than "daemon" 71 71 AC_MSG_CHECKING([for group]) 72 AC_ARG_WITH([group], A S_HELP_STRING(--with-group=GROUP,install files as GROUP [[daemon]]))72 AC_ARG_WITH([group], AC_HELP_STRING([--with-group=GROUP], [install files as GROUP [[daemon]]])) 73 73 74 74 if test -n "$with_group"; then … … 95 95 # Check for warnings 96 96 AC_MSG_CHECKING([for warning flags]) 97 AC_ARG_ENABLE([warnings], A S_HELP_STRING(--enable-warnings,enable warnings))97 AC_ARG_ENABLE([warnings], AC_HELP_STRING([--enable-warnings], [enable warnings])) 98 98 99 99 AC_DEFUN([WT_WARNING_TRY], [ … … 130 130 131 131 # Check for fake prefix 132 AC_ARG_WITH([fake_prefix], A S_HELP_STRING(--with-fake-prefix=FPREFIX,install in FPREFIX but look like PREFIX [[PREFIX]]))132 AC_ARG_WITH([fake_prefix], AC_HELP_STRING([--with-fake-prefix=FPREFIX], [install in FPREFIX but look like PREFIX [[PREFIX]]])) 133 133 134 134 if test -n "$with_fake_prefix"; then … … 140 140 141 141 # Check for trackerd directory 142 AC_ARG_WITH([trackerddir], A S_HELP_STRING(--with-trackerddir=DIR,install tracker components in PREFIX/DIR [[wired]]))142 AC_ARG_WITH([trackerddir], AC_HELP_STRING([--with-trackerddir=DIR], [install tracker components in PREFIX/DIR [[wired]]])) 143 143 144 144 if test -n "$with_trackerddir"; then … … 152 152 153 153 # Check for maintainer mode 154 AC_ARG_ENABLE([maintainer_mode], A S_HELP_STRING(--enable-maintainer-mode,enable maintainer mode))154 AC_ARG_ENABLE([maintainer_mode], AC_HELP_STRING([--enable-maintainer-mode], [enable maintainer mode])) 155 155 156 156 if test -n "$enable_maintainer_mode"; then
