From 833ac7b6581ea5d224c28c124d805b8fcd7748f4 Mon Sep 17 00:00:00 2001 From: zeromus Date: Tue, 16 Aug 2016 00:39:08 -0500 Subject: [PATCH] remove locale crap, which probably breaks the glade port, but i dont care right now --- desmume/autogen.sh | 10 ---------- desmume/configure.ac | 10 +--------- 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/desmume/autogen.sh b/desmume/autogen.sh index 56c493b1f..de0c626e8 100755 --- a/desmume/autogen.sh +++ b/desmume/autogen.sh @@ -1,14 +1,4 @@ #!/bin/sh # intltoolize is optionnal as it's only required for the gtk-glade UI. -if test ! "x$(which intltoolize)" = "x"; then - echo "Running intltoolize" - intltoolize --copy --force --automake -else - if test ! "x$(which gintltoolize)" = "x"; then - echo "Running gintltoolize" - gintltoolize --copy --force --automake - fi -fi - autoreconf --install --force --verbose diff --git a/desmume/configure.ac b/desmume/configure.ac index 10bce01f8..2645e6be7 100644 --- a/desmume/configure.ac +++ b/desmume/configure.ac @@ -35,9 +35,6 @@ fi AC_DEFINE_UNQUOTED([SVN_REV], [$REVISION], [subversion revision number]) AC_DEFINE_UNQUOTED([SVN_REV_STR], ["$REVISION"], [subversion revision number string]) -dnl - Check for intltool/gettext macros -IT_PROG_INTLTOOL - dnl - Check for zlib AC_CHECK_LIB(z, gzopen, [], [AC_MSG_ERROR([zlib was not found, we can't go further. Please install it or specify the location where it's installed.])]) @@ -231,9 +228,7 @@ if test "x$HAVE_ALSA" = "xno"; then fi fi -dnl - Determine which UIs to build and if po/ should be included -PO_DIR="po" -PO_MAKEFILE="po/Makefile.in" +dnl - Determine which UIs to build UI_DIR="cli $UI_DIR" if test "x$HAVE_GTK" = "xyes"; then UI_DIR="gtk $UI_DIR" @@ -368,14 +363,11 @@ AC_SUBST(USE_MAINTAINER_MODE) dnl --- Finally, output all the makefiles AC_CONFIG_FILES([Makefile - ${PO_MAKEFILE} src/Makefile src/cli/Makefile src/cli/doc/Makefile src/gtk/Makefile src/gtk/doc/Makefile - src/gtk-glade/Makefile - src/gtk-glade/doc/Makefile src/gdbstub/Makefile ]) AC_OUTPUT