2002-10-06 Brian Masney <masneyb@gftp.org>
* src/gtk/delete_dialog.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c,
src/gtk/transfer.c - Fixed dead-locks with GDK_THREADS_{ENTER,LEAVE}
* configure.in, src/gtk/Makefile.am - Use GTHREAD_LIBS
2002-10-03 Brian Masney <masneyb@gftp.org>
* Makefile.am - remove intl and m4 directory from subdirs. autogen.sh
will automagically add these for me.
* autogen.sh - remove check for libtool
* configure.in - link in gthread
* cvsclean - added this script
* *.[ch] - added $Id$ tags
* debian/* - updated files from Debian maintainer
author |
masneyb |
date |
Mon, 07 Oct 2002 10:40:43 +0000 |
parents |
|
children |
5a178bd04ca5 |
rev |
line source |
33
|
1 #!/bin/sh
|
|
2
|
|
3 make distclean
|
|
4 find . -name Makefile.in -exec rm -f {} \;
|
|
5 find . -name Makefile -exec rm -f {} \;
|
|
6 find . -name "*~" -exec rm -f {} \;
|
|
7 rm -rf intl
|
|
8 rm -f po/Makefile.in.in po/*.gmo po/Makevars.template po/Rules-quot po/boldquot.sed po/en@boldquot.header po/en@quot.header po/insert-header.sin po/quot.sed po/remove-potcdate.sin config.log config.cache config.status config.h gftp.spec stamp-h stamp-h.in ABOUT-NLS INSTALL config.guess config.rpath config.status config.sub configure install-sh missing mkinstalldirs
|
|
9
|
|
10 cat configure.in | sed s/\ intl\\/Makefile\ //g | sed s/po\\/Makefile.in\ //g > configure.in.new
|
|
11 mv configure.in.new configure.in
|
|
12
|
|
13 cat Makefile.am | sed s/\ intl\ //g | sed s/\ config\.rpath//g | sed s/mkinstalldirs//g > Makefile.am.new
|
|
14 mv Makefile.am.new Makefile.am
|