~ubuntu-branches/ubuntu/maverick/clamav/maverick-proposed

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/include/llvm/Config/config.h.cmake

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-17 12:30:20 UTC
  • mfrom: (0.35.17 sid)
  • Revision ID: james.westby@ubuntu.com-20101217123020-dbtsp3upnaxsgg89
Tags: 0.96.5+dfsg-1ubuntu1.10.10.1
* Microversion update for Maverick (LP: #691414)
  - Improved database login times
  - Expanded use of new bytecode signatures
  - Other bugfixes/improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
** Created by Kevin from config.h.in **
4
4
***************************************/
5
5
 
 
6
#ifndef CONFIG_H
 
7
#define CONFIG_H
 
8
 
6
9
/* Define if dlopen(0) will open the symbols of the program */
7
10
#undef CAN_DLOPEN_SELF
8
11
 
312
315
/* Define to 1 if you have the `roundf' function. */
313
316
#undef HAVE_ROUNDF
314
317
 
 
318
/* Define to 1 if you have the `round' function. */
 
319
#cmakedefine HAVE_ROUND ${HAVE_ROUND}
 
320
 
315
321
/* Define to 1 if you have the `sbrk' function. */
316
322
#cmakedefine HAVE_SBRK ${HAVE_SBRK}
317
323
 
452
458
/* Define to 1 if the system has the type `u_int64_t'. */
453
459
#undef HAVE_U_INT64_T
454
460
 
 
461
/* Define to 1 if you have the <valgrind/valgrind.h> header file. */
 
462
#cmakedefine HAVE_VALGRIND_VALGRIND_H ${HAVE_VALGRIND_VALGRIND_H}
 
463
 
455
464
/* Define to 1 if you have the <windows.h> header file. */
456
465
#cmakedefine HAVE_WINDOWS_H ${HAVE_WINDOWS_H}
457
466
 
519
528
#cmakedefine LLVM_PATH_TWOPI "${LLVM_PATH_TWOPI}"
520
529
 
521
530
/* Installation prefix directory */
522
 
#undef LLVM_PREFIX
 
531
#cmakedefine LLVM_PREFIX "${LLVM_PREFIX}"
523
532
 
524
533
/* Define if the OS needs help to load dependent libraries for dlopen(). */
525
534
#cmakedefine LTDL_DLOPEN_DEPLIBS ${LTDL_DLOPEN_DEPLIBS}
617
626
/* Define to a function implementing strdup */
618
627
#cmakedefine strdup ${strdup}
619
628
 
620
 
/* Native LLVM architecture */
621
 
#cmakedefine LLVM_NATIVE_ARCH ${LLVM_NATIVE_ARCH}Target
 
629
/* LLVM architecture name for the native architecture, if available */
 
630
#cmakedefine LLVM_NATIVE_ARCH ${LLVM_NATIVE_ARCH}
 
631
  
 
632
/* LLVM name for the native Target init function, if available */
 
633
#cmakedefine LLVM_NATIVE_TARGET LLVMInitialize${LLVM_NATIVE_ARCH}Target
 
634
 
 
635
/* LLVM name for the native TargetInfo init function, if available */
 
636
#cmakedefine LLVM_NATIVE_TARGETINFO LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo
 
637
 
 
638
/* LLVM name for the native AsmPrinter init function, if available */
 
639
#cmakedefine LLVM_NATIVE_ASMPRINTER LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter
 
640
 
 
641
#endif