diff options
author | Alexander Bokovoy <ab@samba.org> | 2003-07-15 13:00:20 +0000 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2003-07-15 13:00:20 +0000 |
commit | 98af0e01b3a06db3f4ab0dacd7f430d4049610f6 (patch) | |
tree | 7a942643ee199327db12e546abe10e0e210e04e0 | |
parent | 036071095617a6e3957e4153db37c0765567bd3f (diff) | |
download | samba-98af0e01b3a06db3f4ab0dacd7f430d4049610f6.tar.gz samba-98af0e01b3a06db3f4ab0dacd7f430d4049610f6.tar.bz2 samba-98af0e01b3a06db3f4ab0dacd7f430d4049610f6.zip |
Accept --with-expsam=no as valid option (do nothing on it). Simplifies automatic option generation for spec files
(This used to be commit 4042d965f26d8cc056792df50d0a2a6f3f640e50)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index 3a940b8da8..fd7ee9fc30 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2464,6 +2464,8 @@ AC_ARG_WITH(expsam, AM_PATH_MYSQL([0.11.0],[default_shared_modules="$default_shared_modules pdb_mysql"],[]) CFLAGS="$CFLAGS $MYSQL_CFLAGS" ;; + no) + ;; *) echo "Unknown module name \"$i\"! Exiting..." exit 1 |