You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: configure.in
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1837,6 +1837,24 @@ AC_ARG_WITH(system_ffi,
1837
1837
1838
1838
AC_MSG_RESULT($with_system_ffi)
1839
1839
1840
+
# Check for --with-dbmliborder
1841
+
AC_MSG_CHECKING(for --with-dbmliborder)
1842
+
AC_ARG_WITH(dbmliborder,
1843
+
AC_HELP_STRING([--with-dbmliborder=db1:db2:...], [order to check db backends for dbm. Valid value is a colon separated string with the backend names `ndbm', `gdbm' and `bdb'.]),
1844
+
[
1845
+
if test x$with_dbmliborder = xyes
1846
+
then
1847
+
AC_MSG_ERROR([proper usage is --with-dbmliborder=db1:db2:...])
1848
+
else
1849
+
for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do
1850
+
if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb
1851
+
then
1852
+
AC_MSG_ERROR([proper usage is --with-dbmliborder=db1:db2:...])
0 commit comments