mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
Add an autogen script on client and server side
Just have to run it and then make
This commit is contained in:
9
autogen.sh
Executable file
9
autogen.sh
Executable 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
9
sflphone-gtk/autogen.sh
Executable 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
|
@ -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
|
||||
|
Reference in New Issue
Block a user