Skip to content
Snippets Groups Projects
Commit 8ffd2869 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

bash(1) doesn't like empty if statements

parent 7ae5aa69
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,10 @@
/* define if you have POSIX Threads */
#undef HAVE_PTHREADS
/* define if your POSIX Threads implementatin is circa Draft 4 */
/* define if your POSIX Threads implementation is circa Final Draft */
#undef HAVE_PTHREADS_FINAL
/* define if your POSIX Threads implementation is circa Draft 4 */
#undef HAVE_PTHREADS_D4
/* define if you have -lwrap */
......
This diff is collapsed.
......@@ -271,7 +271,7 @@ if test $ol_with_threads = auto -o $ol_with_threads = posix ; then
OL_POSIX_THREAD_VERSION
if test $ol_cv_pthread_version = final ; then
dnl AC_DEFINE(HAVE_PTHREADS_FINAL)
AC_DEFINE(HAVE_PTHREADS_FINAL)
elif test $ol_cv_pthread_version = draft4 ; then
AC_DEFINE(HAVE_PTHREADS_D4)
else
......
......@@ -149,7 +149,10 @@ is provided ``as is'' without express or implied warranty.
/* define if you have POSIX Threads */
#undef HAVE_PTHREADS
/* define if your POSIX Threads implementatin is circa Draft 4 */
/* define if your POSIX Threads implementation is circa Final Draft */
#undef HAVE_PTHREADS_FINAL
/* define if your POSIX Threads implementation is circa Draft 4 */
#undef HAVE_PTHREADS_D4
/* define if you have -lwrap */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment