|
From: Ned K. <ne...@us...> - 2004-03-30 22:38:20
|
Update of /cvsroot/squeak/squeak/platforms/unix/plugins/FT2Plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11319/platforms/unix/plugins/FT2Plugin Added Files: Tag: ned-branch Makefile.in acinclude.m4 Log Message: Automake 1.7 compatibility changes. Added plugins: - BerkeleyDbPlugin (Stephen Pair) - FT2Plugin (Arjen van Elteren, mods by Ned Konz) - SpreadPlugin (Ned Konz) Added diagnostics and aioDisable for invalid sockets in sqUnixSocket.c --- NEW FILE: Makefile.in --- # default Makefile for Unix Squeak plugins [make_cfg] [make_plg] FREETYPE_CONFIG = [freetype_config] XINCLUDES = [includes] `$(FREETYPE_CONFIG) --cflags` OBJS = [targets] TARGET = [target] PLIBS = [plibs] # `$(FREETYPE_CONFIG) --libs` [make_inc] $(TARGET) : $(OBJS) Makefile $(LINK) $(TARGET) $(OBJS) $(PLIBS) [make_targets] .force : --- NEW FILE: acinclude.m4 --- if test x$freetype_exec_prefix != x ; then freetype_args="$freetype_args --exec-prefix=$freetype_exec_prefix" if test x${FREETYPE_CONFIG+set} != xset ; then FREETYPE_CONFIG=$freetype_exec_prefix/bin/freetype-config fi fi if test x$freetype_prefix != x ; then freetype_args="$freetype_args --prefix=$freetype_prefix" if test x${FREETYPE_CONFIG+set} != xset ; then FREETYPE_CONFIG=$freetype_prefix/bin/freetype-config fi fi AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no) no_freetype="" if test "$FREETYPE_CONFIG" = "no" ; then AC_MSG_ERROR([ *** Unable to find FreeType2 library (http://www.freetype.org/) ]) fi AC_PLUGIN_CHECK_LIB(freetype,FT_Library_Version) AC_PLUGIN_DEFINE_UNQUOTED(freetype_config,$FREETYPE_CONFIG) |