Module Name:    src
Committed By:   joerg
Date:           Sun Jan  8 21:34:23 UTC 2017

Modified Files:
        src/external/bsd/mdocml/dist: configure

Log Message:
Make sure isblank is not a macro, it will have failed the configure
check earlier.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/mdocml/dist/configure

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/mdocml/dist/configure
diff -u src/external/bsd/mdocml/dist/configure:1.5 src/external/bsd/mdocml/dist/configure:1.6
--- src/external/bsd/mdocml/dist/configure:1.5	Fri Jul 15 19:40:42 2016
+++ src/external/bsd/mdocml/dist/configure	Sun Jan  8 21:34:23 2017
@@ -363,8 +363,10 @@ fi
 [ ${HAVE_GETSUBOPT} -eq 0 ] && \
 	echo "extern	int	  getsubopt(char **, char * const *, char **);"
 
-[ ${HAVE_ISBLANK} -eq 0 ] && \
+if [ ${HAVE_ISBLANK} -eq 0 ]; then
+	echo "#undef isblank"
 	echo "extern	int	  isblank(int);"
+fi
 
 [ ${HAVE_MKDTEMP} -eq 0 ] && \
 	echo "extern	char	 *mkdtemp(char *);"

Reply via email to