Changeset 21519
- Timestamp:
- 2010-01-18T16:56:17+13:00 (13 years ago)
- Location:
- main/trunk/gs2-core
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/gs2-core/common-src/configure
r21474 r21519 814 814 --disable-dependency-tracking speeds up one-time build 815 815 --enable-dependency-tracking do not reject slow dependency extractors 816 --enable-sqlite Enable SQLite support816 --disable-sqlite Disable SQLite support 817 817 818 818 Some influential environment variables: … … 2668 2668 2669 2669 2670 # Option: SQLite support 2670 # Option: SQLite support (enabled by default) 2671 2671 # Check whether --enable-sqlite or --disable-sqlite was given. 2672 2672 if test "${enable_sqlite+set}" = set; then 2673 2673 enableval="$enable_sqlite" 2674 USE_SQLITE=1 && 2674 2675 else 2676 enable_sqlite=yes 2677 fi; 2678 if test "x$enable_sqlite" != xno; then 2679 2675 2680 cat >>confdefs.h <<\_ACEOF 2676 2681 #define USE_SQLITE 1 2677 2682 _ACEOF 2678 2683 2679 else 2680 USE_SQLITE=0 2681 fi; 2682 2683 2684 if test "$USE_SQLITE" = 1; then 2684 fi 2685 2686 2687 if test "x$enable_sqlite" != xno; then 2685 2688 USE_SQLITE_TRUE= 2686 2689 USE_SQLITE_FALSE='#' -
main/trunk/gs2-core/common-src/configure.ac
r21474 r21519 53 53 AC_SUBST(COMPAT32BITFLAGS) 54 54 55 # Option: SQLite support 56 AC_ARG_ENABLE(sqlite, [ --enable-sqlite Enable SQLite support], USE_SQLITE=1 && AC_DEFINE(USE_SQLITE, 1, [SQLite support]), USE_SQLITE=0) 57 AM_CONDITIONAL(USE_SQLITE, test "$USE_SQLITE" = 1) 55 # Option: SQLite support (enabled by default) 56 AC_ARG_ENABLE([sqlite], [AS_HELP_STRING([--disable-sqlite], [Disable SQLite support])], [], [enable_sqlite=yes]) 57 if test "x$enable_sqlite" != xno; then 58 AC_DEFINE(USE_SQLITE, 1, [SQLite support]) 59 fi 60 AM_CONDITIONAL(USE_SQLITE, test "x$enable_sqlite" != xno) 58 61 59 62 # Generate the Makefiles for this package -
main/trunk/gs2-core/configure
r21517 r21519 816 816 --disable-dependency-tracking speeds up one-time build 817 817 --enable-dependency-tracking do not reject slow dependency extractors 818 --enable-sqlite Enable SQLite support818 --disable-sqlite Disable SQLite support 819 819 820 820 Some influential environment variables: … … 2670 2670 2671 2671 2672 # Option: SQLite support 2672 # Option: SQLite support (enabled by default) 2673 2673 # Check whether --enable-sqlite or --disable-sqlite was given. 2674 2674 if test "${enable_sqlite+set}" = set; then 2675 2675 enableval="$enable_sqlite" 2676 USE_SQLITE=1 && 2676 2677 else 2678 enable_sqlite=yes 2679 fi; 2680 if test "x$enable_sqlite" != xno; then 2681 2677 2682 cat >>confdefs.h <<\_ACEOF 2678 2683 #define USE_SQLITE 1 2679 2684 _ACEOF 2680 2685 2681 else 2682 USE_SQLITE=0 2683 fi; 2684 2685 2686 if test "$USE_SQLITE" = 1; then 2686 fi 2687 2688 2689 if test "x$enable_sqlite" != xno; then 2687 2690 USE_SQLITE_TRUE= 2688 2691 USE_SQLITE_FALSE='#' -
main/trunk/gs2-core/configure.ac
r21517 r21519 53 53 AC_SUBST(COMPAT32BITFLAGS) 54 54 55 # Option: SQLite support 56 AC_ARG_ENABLE(sqlite, [ --enable-sqlite Enable SQLite support], USE_SQLITE=1 && AC_DEFINE(USE_SQLITE, 1, [SQLite support]), USE_SQLITE=0) 57 AM_CONDITIONAL(USE_SQLITE, test "$USE_SQLITE" = 1) 55 # Option: SQLite support (enabled by default) 56 AC_ARG_ENABLE([sqlite], [AS_HELP_STRING([--disable-sqlite], [Disable SQLite support])], [], [enable_sqlite=yes]) 57 if test "x$enable_sqlite" != xno; then 58 AC_DEFINE(USE_SQLITE, 1, [SQLite support]) 59 fi 60 AM_CONDITIONAL(USE_SQLITE, test "x$enable_sqlite" != xno) 58 61 59 62 # Configure the common-src subdirectory -
main/trunk/gs2-core/runtime-src/configure
r21505 r21519 822 822 --disable-dependency-tracking speeds up one-time build 823 823 --enable-dependency-tracking do not reject slow dependency extractors 824 --enable-sqlite Enable SQLite support824 --disable-sqlite Disable SQLite support 825 825 826 826 Some influential environment variables: … … 3588 3588 3589 3589 3590 # Option: SQLite support 3590 # Option: SQLite support (enabled by default) 3591 3591 # Check whether --enable-sqlite or --disable-sqlite was given. 3592 3592 if test "${enable_sqlite+set}" = set; then 3593 3593 enableval="$enable_sqlite" 3594 USE_SQLITE=1 && 3594 3595 else 3596 enable_sqlite=yes 3597 fi; 3598 if test "x$enable_sqlite" != xno; then 3599 3595 3600 cat >>confdefs.h <<\_ACEOF 3596 3601 #define USE_SQLITE 1 3597 3602 _ACEOF 3598 3603 3599 else 3600 USE_SQLITE=0 3601 fi; 3602 3603 3604 if test "$USE_SQLITE" = 1; then 3604 fi 3605 3606 3607 if test "x$enable_sqlite" != xno; then 3605 3608 USE_SQLITE_TRUE= 3606 3609 USE_SQLITE_FALSE='#' -
main/trunk/gs2-core/runtime-src/configure.ac
r21505 r21519 56 56 AC_SUBST(COMPAT32BITFLAGS) 57 57 58 # Option: SQLite support 59 AC_ARG_ENABLE(sqlite, [ --enable-sqlite Enable SQLite support], USE_SQLITE=1 && AC_DEFINE(USE_SQLITE, 1, [SQLite support]), USE_SQLITE=0) 60 AM_CONDITIONAL(USE_SQLITE, test "$USE_SQLITE" = 1) 58 # Option: SQLite support (enabled by default) 59 AC_ARG_ENABLE([sqlite], [AS_HELP_STRING([--disable-sqlite], [Disable SQLite support])], [], [enable_sqlite=yes]) 60 if test "x$enable_sqlite" != xno; then 61 AC_DEFINE(USE_SQLITE, 1, [SQLite support]) 62 fi 63 AM_CONDITIONAL(USE_SQLITE, test "x$enable_sqlite" != xno) 61 64 62 65 # Generate the Makefiles for this package
Note:
See TracChangeset
for help on using the changeset viewer.