diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 2 insertions, 3 deletions
@@ -1,4 +1,4 @@ -This package should provide a sample skeleton of a GTK+ based application +This package should provide a sample skeleton of an application written in the D Programming Language. It makes use of the common autotools and the GNU D Compiler (GDC). diff --git a/configure.ac b/configure.ac index 8ef9d7b..f82bedc 100644 --- a/configure.ac +++ b/configure.ac @@ -19,6 +19,7 @@ GETTEXT_PACKAGE=$PACKAGE AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["${GETTEXT_PACKAGE}"], [gettext domain]) +AC_SUBST(PACKAGE_LOCALE_DIR, "${prefix}/${DATADIRNAME}/locale") dnl Check for GNU D Compiler AC_PATH_PROG(GDC, "gdc", no) @@ -33,10 +34,8 @@ AC_SUBST(DFLAGS, "-g -O2") dnl TODO: Check for Phobos Library -dnl TODO: Check for duit GTK+ D Bindings AC_SUBST(DEPS_CFLAGS) AC_SUBST(DEPS_LIBS) -AC_SUBST(PACKAGE_LOCALE_DIR, "${prefix}/${DATADIRNAME}/locale") AC_CONFIG_FILES([ config.d |