added pt_BR to ALL_LINGUAS

2000-07-15  Sven Neumann  <neo@wintermute.ochsenblut.de>

	* configure.in: added pt_BR to ALL_LINGUAS

	* tools/Makefile.am: only build gimp-remote if libXmu
	is available. Added a target for kernelgen while I was
	on it.
This commit is contained in:
Sven Neumann 2000-07-15 00:51:49 +00:00 committed by Sven Neumann
parent 2010d3a822
commit 6a2e32f69e
4 changed files with 27 additions and 12 deletions

View File

@ -1,3 +1,11 @@
2000-07-15 Sven Neumann <neo@wintermute.ochsenblut.de>
* configure.in: added pt_BR to ALL_LINGUAS
* tools/Makefile.am: only build gimp-remote if libXmu
is available. Added a target for kernelgen while I was
on it.
2000-07-15 Sven Neumann <neo@wintermute.ochsenblut.de>
* tools/Makefile.am: build gimp-remote

View File

@ -91,7 +91,7 @@ fi
dnl i18n stuff
ALL_LINGUAS="ca cs da de en_GB es fi fr gl hu it ja ko nl no pl ru sk sv uk"
ALL_LINGUAS="ca cs da de en_GB es fi fr gl hu it ja ko nl no pl pt_BR ru sk sv uk"
AM_GNU_GETTEXT
@ -182,13 +182,13 @@ dnl Test for Xmu
if test -z "$LIBXMU"; then
AC_CHECK_LIB(Xmu, XmuClientWindow,
AC_CHECK_HEADER(X11/Xmu/WinUtil.h,
WEBBROWSER="webbrowser"; LIBXMU='-lXmu -lXt -lSM -lICE',
AC_MSG_WARN(*** webbrowser plug-in will not be built (XMU header file not found) ***)),
WEBBROWSER="webbrowser"; GIMP_REMOTE="gimp-remote"; LIBXMU='-lXmu -lXt -lSM -lICE',
AC_MSG_WARN(*** webbrowser plug-in and gimp-remote will not be built (XMU header file not found) ***)),
AC_CHECK_LIB(Xmu, XmuUpdateMapHints,
AC_CHECK_HEADER(X11/Xmu/WinUtil.h,
WEBBROWSER="webbrowser"; LIBXMU='-lXmu -lXt',
AC_MSG_WARN(*** webbrowser plug-in will not be built (XMU header file not found) ***)),
AC_MSG_WARN(*** webbrowser plug-in will not be built (XMU library not found) ***), -lXt), -lXt -lSM -lICE)
WEBBROWSER="webbrowser"; GIMP_REMOTE="gimp-remote"; LIBXMU='-lXmu -lXt',
AC_MSG_WARN(*** webbrowser plug-in and gimp-remote will not be built (XMU header file not found) ***)),
AC_MSG_WARN(*** webbrowser plug-in and gimp-remote will not be built (XMU library not found) ***), -lXt), -lXt -lSM -lICE)
fi
dnl Test for libaa
@ -693,6 +693,7 @@ AC_SUBST(brushdata)
AC_SUBST(gradientdata)
AC_SUBST(palettedata)
AC_SUBST(patterndata)
AC_SUBST(GIMP_REMOTE)
AC_SUBST(WEBBROWSER)
AC_SUBST(LIBXMU)
AC_SUBST(TIFF)

View File

@ -4,17 +4,23 @@ else
D_pdbgen=
endif
bin_PROGRAMS = gimp-remote
bin_PROGRAMS = $(GIMP_REMOTE)
EXTRA_PROGRAMS = \
gimp-remote \
kernelgen
gimp_remote_SOURCES = gimp-remote.c
gimp_remote_LDADD = \
$(GTK_LIBS) \
-lXmu
$(LIBXMU)
kernelgen_SOURCES = kernelgen.c
INCLUDES = \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(includedir)
#if WITH_GCG
@ -24,5 +30,3 @@ INCLUDES = \
#endif
SUBDIRS = $(D_pdbgen) #$(D_gcg)
EXTRA_DIST = kernelgen.c

View File

@ -116,6 +116,8 @@ main (int argc,
}
printf ("};\n");
exit (0);
}