diff options
author | Tim Potter <tpot@samba.org> | 2002-04-04 02:30:54 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-04-04 02:30:54 +0000 |
commit | 5614a72b78c367319e7f29251f2f145acf9e23df (patch) | |
tree | 212d2fe28ddd7c983053577631544d8a96826a74 | |
parent | 6a0def755915f9cfa528625dc3899f4f939ba327 (diff) | |
download | samba-5614a72b78c367319e7f29251f2f145acf9e23df.tar.gz samba-5614a72b78c367319e7f29251f2f145acf9e23df.tar.bz2 samba-5614a72b78c367319e7f29251f2f145acf9e23df.zip |
Add -D__INSURE__ to the CPPFLAGS if CC=insure.
(This used to be commit fb80ff968cd7634704770586d1918b477579164b)
-rw-r--r-- | source3/configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index af6168f779..014e321af2 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2676,6 +2676,13 @@ AC_SUBST(BUILD_POPT) AC_SUBST(FLAGS1) ################################################# +# do extra things if we are running insure + +if test "${ac_cv_prog_CC}" = "insure"; then + CPPFLAGS="$CPPFLAGS -D__INSURE__" +fi + +################################################# # final configure stuff AC_MSG_CHECKING([configure summary]) |