~zeitgeist-sharp/zeitgeist-sharp/packaging

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Manish Sinha
  • Date: 2010-09-18 11:42:53 UTC
  • Revision ID: manishsinha.tech@gmail.com-20100918114253-cllkz8ed7oi8std4
Added DateTime support in Zeitgeist.Datamodel.Event for the Property Timestamp

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
AC_ARG_ENABLE(debug_x86,
27
27
        AC_HELP_STRING([--enable-debug_x86],
28
 
                [Use 'DEBUG_X86' Configuration [default=YES]]),
 
28
                [Use 'DEBUG_X86' Configuration [default=NO]]),
29
29
                enable_debug_x86=yes, enable_debug_x86=no)
30
30
AM_CONDITIONAL(ENABLE_DEBUG_X86, test x$enable_debug_x86 = xyes)
31
31
if test "x$enable_debug_x86" = "xyes" ; then
33
33
fi
34
34
AC_ARG_ENABLE(release_x86,
35
35
        AC_HELP_STRING([--enable-release_x86],
36
 
                [Use 'RELEASE_X86' Configuration [default=NO]]),
 
36
                [Use 'RELEASE_X86' Configuration [default=YES]]),
37
37
                enable_release_x86=yes, enable_release_x86=no)
38
38
AM_CONDITIONAL(ENABLE_RELEASE_X86, test x$enable_release_x86 = xyes)
39
39
if test "x$enable_release_x86" = "xyes" ; then
40
40
        CONFIG_REQUESTED="yes"
41
41
fi
42
42
if test -z "$CONFIG_REQUESTED" ; then
43
 
        AM_CONDITIONAL(ENABLE_DEBUG_X86, true)
44
 
        enable_debug_x86=yes
 
43
        AM_CONDITIONAL(ENABLE_RELEASE_X86, true)
 
44
        enable_release_x86=yes
45
45
fi
46
46
 
47
47