ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/liblzf/configure.ac
Revision: 1.3
Committed: Sun Nov 25 16:06:18 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
CVS Tags: rel-3_6, rel-3_5, rel-3_4, rel-3_3, rel-3_1, HEAD
Changes since 1.2: +0 -4 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 AC_INIT
2     AC_CONFIG_SRCDIR([lzfP.h])
3    
4     AC_CONFIG_HEADER(config.h)
5    
6 root 1.2 AC_GNU_SOURCE
7     AC_SYS_LARGEFILE
8 root 1.1 AC_PROG_CC
9     AC_PROG_RANLIB
10     AC_PROG_INSTALL
11     AC_HEADER_STDC
12    
13     AC_C_CONST
14 root 1.2 AC_C_INLINE
15     AC_CHECK_HEADERS(getopt.h)
16     AC_CHECK_FUNCS(getopt_long)
17 root 1.1
18     if test "$GCC" = yes; then
19     CFLAGS="$CFLAGS -O3 -funroll-all-loops"
20     else
21     AC_MSG_RESULT(no gcc)
22     fi
23    
24     AC_CONFIG_FILES([Makefile])
25     AC_OUTPUT