diff options
author | 2007-06-11 17:49:28 +0000 | |
---|---|---|
committer | 2007-06-11 17:49:28 +0000 | |
commit | 0d8a3ccfe29681d855bb18649af75cc177335a6b (patch) | |
tree | 2d420e917d3f28928b9dff8a72d6c3449b2d7aca | |
parent | c6421dddc6ede5f92a4626899083e9eaece0f380 (diff) | |
download | dskel-0d8a3ccfe29681d855bb18649af75cc177335a6b.tar.gz dskel-0d8a3ccfe29681d855bb18649af75cc177335a6b.tar.bz2 |
Remove GTK stuff for now, we are just an autotools D project skeleton.
git-svn-id: http://svn.sukimashita.com/repos/dskel/trunk@22 4281df72-ff29-0410-8fee-2d9ac0c5f5a7
-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 |