configure.ac:
- Move configure.in to configure.ac (for autoconf 2.50+). - Set CFLAGS to "-Wall -O2" only if not in environment already. - Set package version to 1.0.0 already. git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@82 53a565d1-3bb7-0310-b661-cf11e63c67ab
This commit is contained in:
parent
b0332cb93e
commit
1673eadd82
|
@ -1,7 +1,7 @@
|
|||
# process this file with autoconf to get a configure script
|
||||
|
||||
AC_INIT(Makefile.am)
|
||||
AM_INIT_AUTOMAKE(libraw1394, 0.9.0)
|
||||
AM_INIT_AUTOMAKE(libraw1394, 1.0.0)
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
|
||||
AC_PROG_CC
|
||||
|
@ -22,7 +22,7 @@ AC_SUBST(lt_revision)
|
|||
AC_SUBST(lt_age)
|
||||
|
||||
|
||||
CFLAGS="$CFLAGS -Wall -Wunused"
|
||||
CFLAGS=${CFLAGS:-"-Wall -O2"}
|
||||
AC_OUTPUT([
|
||||
Makefile
|
||||
src/Makefile
|
Reference in New Issue