home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Enlightenment / enl_BETA-0.13.src.tar.gz / enl_BETA-0.13.src.tar / enl-0.13 / Enl.tmpl < prev    next >
Text File  |  1997-11-18  |  2KB  |  52 lines

  1. XCOMM    Configuration File for Enlightenment 0.13
  2. XCOMM    -----------------------------------------
  3.  
  4. XCOMM    Installation Directory
  5. XCOMM    ----------------------
  6. XCOMM    Define this to be the location of the root installation directory.
  7.  
  8. ENLROOT=/usr/local/enlightenment
  9.  
  10. XCOMM    Enlightenment Themes 
  11. XCOMM    --------------------
  12. XCOMM    If you have a themes directory off of the main e source code
  13. XCOMM    directory and would like for xmkmf to build the appropriate
  14. XCOMM    makefiles there too, then set this to YES
  15.  
  16. #define ThemesDirPresent NO
  17.  
  18. XCOMM    Threading Support
  19. XCOMM    -----------------
  20. XCOMM    By default, we will try to build the threaded version of 
  21. XCOMM    enlightenment if your X is also threaded.  This *can* lead to
  22. XCOMM    performance degradation on non-multi-CPU architectures, depending
  23. XCOMM    upon how effecient your threads are.
  24.  
  25. #define    ThreadedE    ThreadedX    
  26.  
  27. XCOMM    C Compiler Options
  28. XCOMM    ------------------
  29. XCOMM    If you want to use pgcc, then, uncomment this.
  30.  
  31. XCOMM    CC=pgcc
  32. XCOMM    #define HasPgcc YES
  33.  
  34. XCOMM    Additional Defines
  35. XCOMM    ------------------
  36. XCOMM    If your C compiler requires special options, this is the place to put
  37. XCOMM    them.  We have included recommended entries for a few compilers...
  38.  
  39. #if HasGcc2                    /* GNU C */
  40. DEFINES = -D_USE_VSNPRINTF
  41. CDEBUGFLAGS = -Wall -pedantic
  42. #elif HasSunC                    /* Sun's DevPro v2.x + */
  43. DEFINES = -D_USE_VSNPRINTF -D__EXTENSIONS__ -D_POSIX_C_SOURCE
  44. CDEBUGFLAGS = -v -fast -native
  45. #elif ModernOSF1                /* Digital UNIX */
  46. DEFINES = -D_POSIX_C_SOURCE
  47. CDEBUGFLAGS = -verbose -fast
  48. #else
  49. DEFINES =
  50. CDEBUGFLAGS = -O
  51. #endif
  52.