Add an autogen script on client and server side

Just have to run it and then make
This commit is contained in:
Emmanuel Milou
2008-10-01 14:25:55 -04:00
parent 5ac80930b7
commit bd3bc1a56b
3 changed files with 19 additions and 1 deletions

9
autogen.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
# could be replaced with autoconf -v -f (verbose, force rebuild of ltmain, .in files, etc.)
aclocal -I m4
libtoolize --force
autoheader
autoconf -f
automake -a
./configure --prefix=/usr --with-debug

9
sflphone-gtk/autogen.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
# could be replaced with autoconf -v -f (verbose, force rebuild of ltmain, .in files, etc.)
aclocal -I m4
libtoolize --force
autoheader
autoconf -f
automake -a
./configure --prefix=/usr --with-debug

View File

@ -15,7 +15,7 @@ AC_ARG_WITH(debug,
[with_debug=no]
)
if test "x$with_debug" = "xfull" -o "x$with_debug" = "xyes"; then
CFLAGS="$CFLAGS -g -DDEBUG -Wall -Werror "
CFLAGS="$CFLAGS -g -DDEBUG -Wall"
fi
AC_PROG_CC