~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

Removed more unused bits.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
AC_ARG_WITH([server-suffix],
66
66
    [AS_HELP_STRING([--with-server-suffix],
67
67
      [Append value to the version string.])],
68
 
    [ DRIZZLE_SERVER_SUFFIX=`echo "$withval" | sed -e  's/^\(...................................\)..*$/\1/'` ],
69
 
    [ DRIZZLE_SERVER_SUFFIX= ]
70
 
    )
 
68
    [ DRIZZLE_SERVER_SUFFIX="$withval" ]
 
69
    [ DRIZZLE_SERVER_SUFFIX= ])
 
70
 
71
71
AC_DEFINE_UNQUOTED([DRIZZLE_SERVER_SUFFIX],[$DRIZZLE_SERVER_SUFFIX],
72
72
                   [Append value to the version string])
73
73
 
74
74
 
75
 
# Use this to set the place used for unix socket used to local communication.
76
75
AC_ARG_WITH([drizzled-user],
77
76
    [AS_HELP_STRING([--with-drizzled-user=username],
78
77
            [What user the drizzled daemon shall be run as.
79
78
                @<:@default=drizzle@:>@])],
80
 
    [ DRIZZLED_USER=$withval ],
81
 
    [ DRIZZLED_USER=drizzle ]
82
 
    )
 
79
    [ DRIZZLED_USER="$withval" ],
 
80
    [ DRIZZLED_USER=drizzle ])
83
81
AC_SUBST(DRIZZLED_USER)
84
82
 
85
 
# If we should allow LOAD DATA LOCAL
86
 
AC_MSG_CHECKING(If we should should enable LOAD DATA LOCAL by default)
87
 
AC_ARG_ENABLE(local-infile,
88
 
    [  --enable-local-infile   Enable LOAD DATA LOCAL INFILE (default: disabled)],
89
 
    [ ENABLED_LOCAL_INFILE=$enableval ],
90
 
    [ ENABLED_LOCAL_INFILE=no ]
91
 
    )
92
 
if test "$ENABLED_LOCAL_INFILE" = "yes"
93
 
then
94
 
  AC_MSG_RESULT([yes])
95
 
  AC_DEFINE([ENABLED_LOCAL_INFILE], [1],
96
 
            [If LOAD DATA LOCAL INFILE should be enabled by default])
97
 
else
98
 
  AC_MSG_RESULT([no])
99
 
fi
100
83
 
101
84
AC_ARG_WITH([comment],
102
85
    [AS_HELP_STRING([--with-comment],