Tue Dec 9 22:26:17 2003 Michael Jennings (mej)

Add libast libs to GRLIBS.

Hopefully fixed Etbg_update_list to be Solaris /bin/sh-friendly.


SVN revision: 8077
This commit is contained in:
Michael Jennings 2003-12-10 03:27:02 +00:00
parent 06f3d6a920
commit 200ba29a4c
4 changed files with 44 additions and 36 deletions

View File

@ -5130,3 +5130,9 @@ Fri Nov 28 09:04:49 2003 Michael Jennings (mej)
Changes for compatibility with newer LibAST.
----------------------------------------------------------------------
Tue Dec 9 22:26:17 2003 Michael Jennings (mej)
Add libast libs to GRLIBS.
Hopefully fixed Etbg_update_list to be Solaris /bin/sh-friendly.
----------------------------------------------------------------------

View File

@ -4,7 +4,7 @@
Summary: Enlightened terminal emulator
Name: Eterm
Version: 0.9.2
Release: 4
Release: 5
Copyright: BSD
Group: User Interface/X
Requires: imlib2, imlib2-loader_jpeg, imlib2-loader_png

View File

@ -484,6 +484,7 @@ else
FOUND_LIBAST=`$LIBAST_CONFIG --version | awk -F. '{print $2}'`
CPPFLAGS="$CPPFLAGS `$LIBAST_CONFIG --cppflags`"
LDFLAGS="$LDFLAGS `$LIBAST_CONFIG --ldflags`"
GRLIBS="$GRLIBS `$LIBAST_CONFIG --libs`"
fi
AC_CHECK_LIB(ast, libast_set_program_name, , FOUND_LIBAST=0, $GRLIBS)

View File

@ -95,8 +95,9 @@ fi
# If there is, cd into it and make sure all the themes have list files.
cd ../themes
for i in `ls -1` ; do
if [ -f $i/theme.cfg -a ! -e $i/$LISTFILE ]; then
if [ -f $i/theme.cfg -a ! -f $i/$LISTFILE ]; then
echo "Creating symlink to $LISTFILE for theme $i"
(cd $i && ln -f -s ../../pix/$LISTFILE $LISTFILE)
rm -f $i/$LISTFILE
ln -f -s ../../pix/$LISTFILE $i/$LISTFILE
fi
done