summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorBenedikt Meurer <benny@xfce.org>2005-06-04 17:02:50 +0000
committerBenedikt Meurer <benny@xfce.org>2005-06-04 17:02:50 +0000
commit02242fababcd2c7c8f552b53cb35a33a83193bdf (patch)
treef4525a13de43723bf8595ef9dd18e062ee6f7684 /autogen.sh
parent1212ec4abac1345fcfa5649378123d3116cebf81 (diff)
downloadthunar-02242fababcd2c7c8f552b53cb35a33a83193bdf.tar.gz
2005-06-04 Benedikt Meurer <benny@xfce.org>
* COPYING.LIB: Add license text for the thunar-vfs library (which is licensed under the LGPL). * HACKING: Add information for people that plan to hack on Thunar. * AUTHORS: Add Jeff Franks. * THANKS: Import the THANKS template. * README: Add some basic information about Thunar. Needs more details. * docs/design/overview.xmi: Import the current overview diagram for Thunar. * Makefile.am, configure.in.in, docs/Makefile.am, docs/design/Makefile.am: Include the docs/ tree with the build framework. * configure.in.in, thunar/Makefile.am, thunar-vfs/Makefile.am: Link against GThread (not yet required from what is coded so far). * configure.in.in: Check for several required header files. * thunar-vfs/Makefile.am, thunar-vfs/thunar-vfs-info.{c,h}, thunar-vfs/thunar-vfs-monitor.{c,h}, thunar-vfs/thunar-vfs-uri.{c,h}, thunar-vfs/thunar-vfs-util.{c,h}, thunar-vfs/thunar-vfs.h: Add some experimental source code to implement parts of the VFS module. * thunar/fallback-icon.h, thunar/fallback-icon.png: Import the fallback icon. * thunar/thunar-application.{c,h}: Import Jeff's ThunarApplication boilerplate (adjusting style as required). * thunar/thunar-desktop-view.{c,h}: Boilerplate for the ThunarDesktopView class with the very basic requirements. * thunar/thunar-file.{c,h}, thunar/thunar-folder.{c,h}: Experimental implementation of ThunarFile and ThunarFolder based on the experimental source for the VFS module. * thunar/thunar-list-model.{c,h}: Sample implementation of the ThunarListModel class, based on an earlier implementation found in Filer. * thunar/thunar-preferences.{c,h}: Template for the ThunarPreferences class. * thunar/thunar-window.{c,h}: Quick-and-dirty ThunarWindow implementation to be able to roughly test the ThunarListModel class. * thunar/main.c: Add code to start a single ThunarWindow. * autogen.sh: Copyright fixes. Substitute date to make it easier to identify snapshots during the early development stages. (Old svn revision: 16314)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 6336a8b9..1ae83fb3 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -3,9 +3,9 @@
# $Id: autogen.sh,v 1.7 2005/01/26 22:07:26 benny Exp $
#
# Copyright (c) 2002-2005
-# The Xfce development team. All rights reserved.
+# The Thunar development team. All rights reserved.
#
-# Written for Xfce by Benedikt Meurer <benny@xfce.org>.
+# Written for Thunar by Benedikt Meurer <benny@xfce.org>.
#
(type xdt-autogen) >/dev/null 2>&1 || {
@@ -18,6 +18,9 @@ EOF
exit 1
}
+# substitute date
+sed "s/@DATE@/`date +%Y%m%d`/g" < "configure.in.in" > "configure.in"
+
exec xdt-autogen $@
# vi:set ts=2 sw=2 et ai: