diff options
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | xulapp/Makefile.am | 0 | ||||
-rw-r--r-- | xulapp/application.ini.in | 18 |
4 files changed, 28 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 06a10b596..4a9d456ed 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,9 @@ SUBDIRS = lib embed src plugins data po help doc +if WITH_XULRUNNER_ENGINE +SUBDIRS += xulapp +endif + ACLOCAL_AMFLAGS = -I m4 NULL = diff --git a/configure.ac b/configure.ac index 89601606e..9b3d7e933 100644 --- a/configure.ac +++ b/configure.ac @@ -42,6 +42,10 @@ AC_SUBST([EPIPHANY_MAJOR],[epiphany_version_major.epiphany_version_minor]) AC_SUBST([EPIPHANY_API_VERSION],[epiphany_version_major.epiphany_version_minor]) AC_SUBST([EPIPHANY_UA_VERSION]) +# Build ID +BUILDID="$(TZ=UTC0 date +'%Y%m%d')" +AC_SUBST([BUILDID]) + AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 no-dist-gzip tar-ustar]) AM_MAINTAINER_MODE @@ -801,6 +805,8 @@ embed/xulrunner/embed/Makefile embed/xulrunner/src/Makefile embed/xulrunner/tests/Makefile embed/xulrunner/utils/Makefile +xulapp/Makefile +xulapp/application.ini ]) AC_CONFIG_FILES([ diff --git a/xulapp/Makefile.am b/xulapp/Makefile.am new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/xulapp/Makefile.am diff --git a/xulapp/application.ini.in b/xulapp/application.ini.in new file mode 100644 index 000000000..da4f3e1aa --- /dev/null +++ b/xulapp/application.ini.in @@ -0,0 +1,18 @@ +[App] +Vendor=GNOME +Name=GNOME Web Browser +Version=@VERSION@ +BuildID=@BUILDID@ +Copyright=Copyright © 2003, 2004, 2005, 2006, 2007 +ID={9bf961d7-fc24-4930-a484-ca5a7cdedb9e} + +[Gecko] +MinVersion=@LIBXUL_VERSION@ +MaxVersion=@LIBXUL_VERSION@ + +[XRE] +EnableProfileMigrator=0 +EnableExtensionManager=0 + +[Crash Reporter] +Enabled=False |