ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/liblzf/configure.in
Revision: 1.3
Committed: Thu Mar 3 17:06:44 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +0 -0 lines
State: FILE REMOVED
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)