IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9637


Ignore:
Timestamp:
Oct 18, 2006, 12:33:32 PM (20 years ago)
Author:
jhoblitt
Message:

add a status message to ACX_PTHREAD to keep RHEL 4 happy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/configure.ac

    r9158 r9637  
    9999
    100100dnl Check for how to link against pthreads
    101 ACX_PTHREAD([], [AC_MSG_ERROR([pthread support is required to build psLib])])
     101dnl RHEL 4.0 was upset about the first arg to ACX_PTHREAD being NULL ([]) so
     102dnl we've added in a worthless message to keep it happy
     103ACX_PTHREAD(
     104  [AC_MSG_RESULT([pthread support is avaiable])],
     105  [AC_MSG_ERROR([pthread support is required to build psLib])]
     106)
    102107
    103108PSLIB_CFLAGS="${PSLIB_CFLAGS=} ${PTHREAD_CFLAGS}"
Note: See TracChangeset for help on using the changeset viewer.