ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/liblzf/configure.in
Revision: 1.2
Committed: Tue Dec 23 04:52:00 2003 UTC (20 years, 4 months ago) by pcg
Branch: MAIN
Changes since 1.1: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 AC_INIT(lzfP.h)
2    
3     AC_CONFIG_HEADER(config.h)
4    
5     AC_PROG_CC
6     AC_PROG_RANLIB
7     AC_PROG_INSTALL
8     AC_HEADER_STDC
9    
10     AC_CHECK_SIZEOF(short, 2)
11     AC_CHECK_SIZEOF(int, 4)
12     AC_CHECK_SIZEOF(long, 4)
13    
14     AC_C_CONST
15    
16     if test "$GCC" = yes; then
17 pcg 1.2 CFLAGS="$CFLAGS -O3 -funroll-all-loops"
18 root 1.1 else
19     AC_MSG_RESULT(no gcc)
20     fi
21    
22     AC_OUTPUT(Makefile)