ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/liblzf/configure.ac
Revision: 1.1
Committed: Thu Mar 3 17:06:44 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-1_5, rel-1_7, rel-1_51, rel-1_6
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     AC_PROG_CC
7     AC_PROG_RANLIB
8     AC_PROG_INSTALL
9     AC_HEADER_STDC
10    
11     AC_CHECK_SIZEOF(short, 2)
12     AC_CHECK_SIZEOF(int, 4)
13     AC_CHECK_SIZEOF(long, 4)
14    
15     AC_C_CONST
16    
17     if test "$GCC" = yes; then
18     CFLAGS="$CFLAGS -O3 -funroll-all-loops"
19     else
20     AC_MSG_RESULT(no gcc)
21     fi
22    
23     AC_CONFIG_FILES([Makefile])
24     AC_OUTPUT