Changeset 3440 for trunk/psLib/configure.ac
- Timestamp:
- Mar 17, 2005, 9:00:06 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/configure.ac (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/configure.ac
r3410 r3440 44 44 dnl MYSQL_CFLAGS="-I${includedir}/mysql" 45 45 AC_ARG_ENABLE(mysql, 46 [AC_HELP_STRING([--enable-mysql],[Build MySQL portions of psLib])], 47 [AC_MSG_RESULT([enable building MySQL portions]) 48 MYSQL_REQ="yes"], 49 [AC_MSG_RESULT([disable building MySQL portions])]) 46 [AC_HELP_STRING([--disable-mysql],[Disable MySQL functionality])], 47 [MYSQL_REQ=$enableval], 48 [MYSQL_REQ="yes"]) 50 49 51 50 if test "$MYSQL_REQ" == "yes" 52 51 then 52 AC_MSG_RESULT([enable building MySQL functionality]) 53 53 AC_ARG_WITH(mysql, 54 54 [AC_HELP_STRING([--with-mysql=DIR],[Specify location of MYSQL.])], … … 79 79 80 80 CFLAGS="${CFLAGS=} -DBUILD_PSDB" 81 else 82 AC_MSG_RESULT([disable building MySQL functionality]) 81 83 fi 82 84 … … 146 148 dnl ------------------- SWIG options --------------------- 147 149 AC_ARG_ENABLE(perlmodule, 148 [AC_HELP_STRING([--enable-perlmodule],[Create a perl module to allow use of psLib in perl])], 149 [SWIG_REQ="yes" 150 AC_MSG_RESULT([enable building perl module])], 151 [ 152 AC_MSG_RESULT([disable building perl module])]) 150 [AC_HELP_STRING([--disable-perlmodule],[Disable creation of perl module])], 151 [SWIG_REQ="$enableval"], 152 [SWIG_REQ="yes"]) 153 153 154 154 if test "$SWIG_REQ" == "yes" 155 155 then 156 AC_MSG_RESULT([enable building perl module]) 156 157 AC_ARG_WITH(swig, 157 158 [AC_HELP_STRING([--with-swig=FILE],[Specify location of SWIG executable.])], … … 181 182 [PERL_PREFIX="$prefix"]) 182 183 AC_SUBST(PERL_PREFIX,$PERL_PREFIX) 184 else 185 AC_MSG_RESULT([disable building perl module]) 183 186 fi 184 187
Note:
See TracChangeset
for help on using the changeset viewer.
