| Server IP : 20.75.53.88 / Your IP : 216.73.217.72 [ Web Server : Apache System : Linux VMRALP-3 4.4.0-256-generic #290~14.04.1-Ubuntu SMP Thu Jun 20 09:24:50 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29+esm15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Domains : 3 Domains MySQL : ON | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/siac/dev/admin/components/htmldoc-master/xcode/ |
Upload File : |
/* * Configuration file for HTMLDOC. * * Copyright © 2011-2021 by Michael R Sweet. * Copyright © 1997-2010 by Easy Software Products. All rights reserved. * * This program is free software. Distribution and use rights are outlined in * the file "COPYING". */ /* * What is the version number for this software? */ #define SVERSION "1.9.15" /* * Limits for the output "engines"... */ #define MAX_CHAPTERS 1000 /* Maximum number of chapters or files */ #define MAX_COLUMNS 200 /* Maximum number of columns in a table */ #define MAX_HF_IMAGES 10 /* Maximum number of header/footer images */ /* * Memory allocation units for other stuff... */ #define ALLOC_FILES 10 /* Temporary/image files */ #define ALLOC_HEADINGS 50 /* Headings */ #define ALLOC_LINKS 100 /* Web links */ #define ALLOC_OBJECTS 100 /* PDF objects */ #define ALLOC_PAGES 10 /* PS/PDF pages */ #define ALLOC_ROWS 20 /* Table rows */ /* * Locations of files... */ #define DOCUMENTATION "/usr/local/share/doc/htmldoc" #define HTML_DATA "/usr/local/share/htmldoc" /* * Do we have the FLTK library? */ #define HAVE_LIBFLTK 1 /* * Do we have the JPEG library? */ #define HAVE_LIBJPEG 1 /* * Do we have the PNG library? */ #define HAVE_LIBPNG 1 /* * Do we have the Xpm library? */ /* #undef HAVE_LIBXPM */ /* * Which encryption libraries do we have? */ #define HAVE_CDSASSL 1 /* #undef HAVE_GNUTLS */ /* #undef HAVE_SSPISSL */ #define HAVE_SSL 1 /* * Do we have the gnutls_transport_set_pull_timeout_function function? */ /* #undef HAVE_GNUTLS_TRANSPORT_SET_PULL_TIMEOUT_FUNCTION */ /* * Do we have the gnutls_priority_set_direct function? */ /* #undef HAVE_GNUTLS_PRIORITY_SET_DIRECT */ /* * What Security framework headers do we have? */ /* #undef HAVE_AUTHORIZATION_H */ /* #undef HAVE_SECBASEPRIV_H */ #define HAVE_SECCERTIFICATE_H 1 /* #undef HAVE_SECIDENTITYSEARCHPRIV_H */ #define HAVE_SECITEM_H 1 /* #undef HAVE_SECITEMPRIV_H */ #define HAVE_SECPOLICY_H 1 /* #undef HAVE_SECPOLICYPRIV_H */ /* #undef HAVE_SECURETRANSPORTPRIV_H */ /* * Do we have the cssmErrorString function? */ #define HAVE_CSSMERRORSTRING 1 /* * Do we have the SecGenerateSelfSignedCertificate function? */ /* #undef HAVE_SECGENERATESELFSIGNEDCERTIFICATE */ /* * Do we have the SecKeychainOpen function? */ #define HAVE_SECKEYCHAINOPEN 1 /* * Do we have (a working) SSLSetEnabledCiphers function? */ #define HAVE_SSLSETENABLEDCIPHERS 1 /* * Do we need to use <strings.h>? */ #define HAVE_STRINGS_H 1 /* * Do we have the <locale.h> header file? */ #define HAVE_LOCALE_H 1 /* * Do we have some of the "standard" string functions? */ #define HAVE_STRDUP 1 #define HAVE_STRCASECMP 1 #define HAVE_STRNCASECMP 1 #define HAVE_STRLCAT 1 #define HAVE_STRLCPY 1 /* * How about snprintf() and vsnprintf()? */ #define HAVE_SNPRINTF 1 #define HAVE_VSNPRINTF 1 /* * Does the "tm" structure contain the "tm_gmtoff" member? */ #define HAVE_TM_GMTOFF 1 /* * Which random number generator function to use... */ #define HAVE_ARC4RANDOM 1 #define HAVE_RANDOM 1 #define HAVE_LRAND48 1 #ifdef HAVE_ARC4RANDOM # define HTMLDOC_RAND() arc4random() # define HTMLDOC_SRAND(v) #elif defined(HAVE_RANDOM) # define HTMLDOC_RAND() random() # define HTMLDOC_SRAND(v) srandom(v) #elif defined(HAVE_LRAND48) # define HTMLDOC_RAND() lrand48() # define HTMLDOC_SRAND(v) srand48(v) #else # define HTMLDOC_RAND() rand() # define HTMLDOC_SRAND(v) srand(v) #endif /* HAVE_ARC4RANDOM */ /* * Do we have hstrerror()? */ #define HAVE_HSTRERROR 1 /* * Do we have getaddrinfo()? */ #define HAVE_GETADDRINFO 1 /* * Do we have getnameinfo()? */ #define HAVE_GETNAMEINFO 1 /* * Do we have the <resolv.h> header file and/or res_init()? */ #define HAVE_RESOLV_H 1 #define HAVE_RES_INIT 1 /* * Do we have poll()? */ #define HAVE_POLL 1 /* * Do we have the long long type? */ #define HAVE_LONG_LONG 1 #ifdef HAVE_LONG_LONG # define HTMLDOC_LLFMT "%lld" # define HTMLDOC_LLCAST (long long) #else # define HTMLDOC_LLFMT "%ld" # define HTMLDOC_LLCAST (long) #endif /* HAVE_LONG_LONG */ /* * Do we have the strtoll() function? */ #define HAVE_STRTOLL 1 #ifndef HAVE_STRTOLL # define strtoll(nptr,endptr,base) strtol((nptr), (endptr), (base)) #endif /* !HAVE_STRTOLL */