File: snprintf.om

package info (click to toggle)
omake 0.10.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,076 kB
  • sloc: ml: 49,729; ansic: 5,163; makefile: 688; sh: 110
file content (17 lines) | stat: -rw-r--r-- 525 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
open configure/Configure

# \begin{doc}
# \subsection{Snprintf configuration}
# Add \verb+open configure/snprintf+ line to your \verb+OMakefile+ to get access to the following
# autoconfiguration variables.
# \varlabel{SNPRINTF_AVAILABLE}{SNPRINTF\_AVAILABLE} A boolean flag telling whether the snprintf
# function is available in the standard C library.
#
# \end{doc}
#

.STATIC:
    SNPRINTF_AVAILABLE = false
    section
        SNPRINTF_AVAILABLE = $(VerboseCheckLib $(EMPTY), snprintf)
        export SNPRINTF_AVAILABLE