|
Revision 2460
(checked in by chipx86, 3 years ago)
|
- Patch by Rodney Dawes to fix a problem with keeping a pointer to the hints table in the themes. We no longer store the whole table, but rather only the parts of it we care about. This fixes a crash.
- This patch also updates the required automake version to 1.9, to be compatible with the new intltool and to use a more recent gnome-common.
|
- Property svn:executable set to
|
| Line | |
|---|
| 1 |
#!/bin/sh |
|---|
| 2 |
# Run this to generate all the initial makefiles, etc. |
|---|
| 3 |
|
|---|
| 4 |
srcdir=`dirname $0` |
|---|
| 5 |
test -z "$srcdir" && srcdir=. |
|---|
| 6 |
|
|---|
| 7 |
PKG_NAME="Notification Daemon" |
|---|
| 8 |
REQUIRED_AUTOMAKE_VERSION=1.9 |
|---|
| 9 |
|
|---|
| 10 |
(test -f $srcdir/configure.ac \ |
|---|
| 11 |
&& test -d $srcdir/src) || { |
|---|
| 12 |
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" |
|---|
| 13 |
echo " top-level notification-daemon directory" |
|---|
| 14 |
exit 1 |
|---|
| 15 |
} |
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
which gnome-autogen.sh || { |
|---|
| 19 |
echo "You need to install gnome-common from the GNOME CVS" |
|---|
| 20 |
exit 1 |
|---|
| 21 |
} |
|---|
| 22 |
|
|---|
| 23 |
USE_GNOME2_MACROS=1 . gnome-autogen.sh |
|---|