Merge branch 'master' of git+ssh://git.enlightenment.org/devs/hermet/enventor

Conflicts:
	configure.ac
	data/.proto/Makefile.am
	src/bin/main.c

fix to install proto properly
This commit is contained in:
ChunEon Park 2013-08-10 02:38:19 +09:00
commit 164a7ec6f8
4 changed files with 6 additions and 3 deletions

1
.gitignore vendored
View File

@ -8,6 +8,7 @@ enventorql
Makefile.in
Makefile
compile
aclocal.m4
autom4te.cache
config.cache

View File

@ -31,6 +31,7 @@ AC_CONFIG_HEADERS(config.h)
AC_GNU_SOURCE
AC_PROG_LIBTOOL
AM_PROG_CC_C_O
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##

View File

@ -2,7 +2,9 @@ MAINTAINERCLEANFILES = Makefile.in
bin_PROGRAMS = enventor enventorql
AM_CPPFLAGS = -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \
AM_CPPFLAGS = -DPACKAGE_DATA_DIR=\"$(pkgdatadir)\" \
-DPACKAGE_BIN_DIR=\"$(bindir)\" \
-DPACKAGE_LIB_DIR=\"$(libdir)\" \
-I$(top_srcdir)/src/bin \
-I$(top_srcdir)/include \
@ENVENTOR_CFLAGS@

View File

@ -486,8 +486,7 @@ term(app_data *ad)
int
main(int argc, char **argv)
{
app_data ad;
memset(&ad, 0x00, sizeof(app_data));
app_data ad = { 0 };
if (!init(&ad, argc, argv))
{