Changeset 20089

Show
Ignore:
Timestamp:
05/01/07 21:30:37 (2 years ago)
Author:
patrick
Message:

MFT r19975: We ought to check for headers before we check for libraries. I

am not sure how we got away with doing it in the opposite order
for so long.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/branches/2.2/modules/vrjuggler/configure.ac

    r19998 r20089  
    149149 
    150150# ----------------------------------------------------------------------------- 
     151# Checks for header files. 
     152# ----------------------------------------------------------------------------- 
     153AC_HEADER_STDC 
     154AC_CHECK_HEADERS(strings.h sys/time.h unistd.h) 
     155 
     156DPP_LANG_SAVE 
     157DPP_LANG_CPLUSPLUS 
     158AC_CHECK_HEADERS([ext/functional]) 
     159DPP_LANG_RESTORE 
     160 
     161# ----------------------------------------------------------------------------- 
    151162# Checks for libraries. 
    152163# ----------------------------------------------------------------------------- 
     
    261272 
    262273DPP_HAVE_CPPUNIT([1.9.10]) 
    263  
    264 # ----------------------------------------------------------------------------- 
    265 # Checks for header files. 
    266 # ----------------------------------------------------------------------------- 
    267 AC_HEADER_STDC 
    268 AC_CHECK_HEADERS(strings.h sys/time.h unistd.h) 
    269  
    270 DPP_LANG_SAVE 
    271 DPP_LANG_CPLUSPLUS 
    272 AC_CHECK_HEADERS([ext/functional]) 
    273 DPP_LANG_RESTORE 
    274274 
    275275# -----------------------------------------------------------------------------