From ed0796335173379e0b8daadd1ca6dc6dc2a13074 Mon Sep 17 00:00:00 2001 From: infirit Date: Tue, 12 Nov 2013 17:43:33 +0100 Subject: Fix --with-libgl config option --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 71ae024..d3bf139 100644 --- a/configure.ac +++ b/configure.ac @@ -547,7 +547,7 @@ dnl --------------------------------------------------------------------------- dnl - Check for GL dnl --------------------------------------------------------------------------- -AC_ARG_WITH(gl, [ --with-libgl build with GL support]) +AC_ARG_WITH(libgl, [ --with-libgl build with GL support]) have_libgl=no GL_LIBS="" -- cgit v1.2.1 From 60a8b14ae3e5489875578e1443258b903426a7c3 Mon Sep 17 00:00:00 2001 From: infirit Date: Thu, 10 Oct 2013 16:35:52 +0200 Subject: Make autofoo happy --- Makefile.am | 1 + configure.ac | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index f400a13..d89aec1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,7 @@ # This file will be processed with automake-1.7 to create Makefile.in AUTOMAKE_OPTIONS = 1.7 +ACLOCAL_AMFLAGS = -I m4 NULL = diff --git a/configure.ac b/configure.ac index d3bf139..ea957ce 100644 --- a/configure.ac +++ b/configure.ac @@ -6,6 +6,7 @@ AC_INIT([mate-screensaver], [http://www.mate-desktop.org/]) AC_CONFIG_SRCDIR(src/mate-screensaver.c) +AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-xz]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) @@ -224,7 +225,7 @@ dnl --------------------------------------------------------------------------- # Like AC_CHECK_HEADER, but it uses the already-computed -I directories. # -AC_DEFUN(AC_CHECK_X_HEADER, [ +AC_DEFUN([AC_CHECK_X_HEADER], [ ac_save_CPPFLAGS="$CPPFLAGS" if test \! -z "$includedir" ; then CPPFLAGS="$CPPFLAGS -I$includedir" @@ -235,7 +236,7 @@ AC_DEFUN(AC_CHECK_X_HEADER, [ # Like AC_TRY_COMPILE, but it uses the already-computed -I directories. # -AC_DEFUN(AC_TRY_X_COMPILE, [ +AC_DEFUN([AC_TRY_X_COMPILE], [ ac_save_CPPFLAGS="$CPPFLAGS" if test \! -z "$includedir" ; then CPPFLAGS="$CPPFLAGS -I$includedir" @@ -248,7 +249,7 @@ AC_DEFUN(AC_TRY_X_COMPILE, [ # Like AC_CHECK_LIB, but it uses the already-computed -I and -L directories. # Use this sparingly; it probably doesn't work very well on X programs. # -AC_DEFUN(AC_CHECK_X_LIB, [ +AC_DEFUN([AC_CHECK_X_LIB], [ ac_save_CPPFLAGS="$CPPFLAGS" ac_save_LDFLAGS="$LDFLAGS" # ac_save_LIBS="$LIBS" @@ -287,7 +288,7 @@ AC_DEFUN(AC_CHECK_X_LIB, [ # /DIR/include and /DIR/lib exist, and adds them to $X_CFLAGS and $X_LIBS # as appropriate. # -AC_DEFUN(HANDLE_X_PATH_ARG, [ +AC_DEFUN([HANDLE_X_PATH_ARG], [ case "$[$1]" in yes) ;; no) ;; -- cgit v1.2.1 From f9d226f2ba60b1dafb40bae0e29431b568c196aa Mon Sep 17 00:00:00 2001 From: infirit Date: Thu, 10 Oct 2013 16:36:44 +0200 Subject: add missing file to POTFILES.in --- po/POTFILES.in | 1 + 1 file changed, 1 insertion(+) diff --git a/po/POTFILES.in b/po/POTFILES.in index 0b3fc6a..89688e0 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -5,6 +5,7 @@ data/mate-screensaver-preferences.desktop.in data/mate-screensaver.directory.in data/images/cosmos/cosmos.xml.in.in [type: gettext/glade]data/lock-dialog-default.ui +data/lock-dialog-default.ui data/org.mate.screensaver.gschema.xml.in savers/cosmos-slideshow.desktop.in.in savers/footlogo-floaters.desktop.in.in -- cgit v1.2.1 From b157c86f2bb370fb449d8640eed9fb544f0d4f62 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Sun, 3 Nov 2013 21:21:42 +0100 Subject: Fix m4 path --- Makefile.am | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index d89aec1..a6e8ebc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ # This file will be processed with automake-1.7 to create Makefile.in AUTOMAKE_OPTIONS = 1.7 -ACLOCAL_AMFLAGS = -I m4 +ACLOCAL_AMFLAGS = -I m4 NULL = diff --git a/configure.ac b/configure.ac index ea957ce..4133c11 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ AC_INIT([mate-screensaver], [http://www.mate-desktop.org/]) AC_CONFIG_SRCDIR(src/mate-screensaver.c) -AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-xz]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) -- cgit v1.2.1