Changeset 4044
- Timestamp:
- 04/06/06 09:24:12 (2 years ago)
- Files:
-
- trackerd/trunk/Makefile.in (modified) (1 diff)
- trackerd/trunk/config.h.in (modified) (2 diffs)
- trackerd/trunk/configure (modified) (1 diff)
- trackerd/trunk/configure.in (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trackerd/trunk/Makefile.in
r3991 r4044 42 42 PREPROCESS = $(CC) -E $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) 43 43 DEPEND = $(CC) -MM $(INCLUDES) 44 LINK = $(CC) $(C FLAGS) $(LDFLAGS) -o $@44 LINK = $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ 45 45 ARCHIVE = ar rcs $@ 46 46 trackerd/trunk/config.h.in
r4023 r4044 37 37 #undef HAVE_SYS_TYPES_H 38 38 39 /* Define to 1 if you have the <sys/vfs.h> header file. */40 #undef HAVE_SYS_VFS_H41 42 39 /* Define to 1 if you have the <unistd.h> header file. */ 43 40 #undef HAVE_UNISTD_H … … 76 73 #undef WT_VERSION 77 74 78 /* Number of bits in a file offset, on hosts where this is settable. */79 #undef _FILE_OFFSET_BITS80 81 /* Define for large files, on AIX-style hosts. */82 #undef _LARGE_FILES83 84 75 /* Define on Solaris to get sigwait() to work using pthreads semantics. */ 85 76 #undef _POSIX_PTHREAD_SEMANTICS trackerd/trunk/configure
r4037 r4044 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 [wired]860 --with-group=GROUP install files as GROUP [daemon]859 --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 [PREFIX]863 --with-trackerddir=DIR install tracker components in PREFIX/DIR [wired]862 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
r4037 r4044 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.57])2 AC_INIT([trackerd],[1.0],[axel@zankasoftware.com]) 3 AC_PREREQ(2.59) 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 C_HELP_STRING([--with-user=USER], [install files as USER [[wired]]]))47 AC_ARG_WITH([user], AS_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 C_HELP_STRING([--with-group=GROUP], [install files as GROUP [[daemon]]]))72 AC_ARG_WITH([group], AS_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 C_HELP_STRING([--enable-warnings], [enable warnings]))97 AC_ARG_ENABLE([warnings], AS_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 C_HELP_STRING([--with-fake-prefix=FPREFIX], [install in FPREFIX but look like PREFIX [[PREFIX]]]))132 AC_ARG_WITH([fake_prefix], AS_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 C_HELP_STRING([--with-trackerddir=DIR], [install tracker components in PREFIX/DIR [[wired]]]))142 AC_ARG_WITH([trackerddir], AS_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 C_HELP_STRING([--enable-maintainer-mode], [enable maintainer mode]))154 AC_ARG_ENABLE([maintainer_mode], AS_HELP_STRING(--enable-maintainer-mode,enable maintainer mode)) 155 155 156 156 if test -n "$enable_maintainer_mode"; then
